Add pantalaimon config + some ement settings

master
Hugo Thunnissen 10 months ago
parent b761c1a3e6
commit b8f2b9da27

@ -0,0 +1,9 @@
[Default]
SSL = True
[im.hugot.nl]
Homeserver = https://im.hugot.nl
ListenAddress = 127.0.0.1
ListenPort = 14023
SSL = True
UseKeyring = True

@ -480,6 +480,9 @@ OLD-FUNCTION must be the function that is being adviced."
(when (require 'ement nil t)
(setq ement-save-sessions t)
(setq ement-room-left-margin-width 0)
(setq ement-room-message-format-spec "[%S]\n%B%r\n%R%t")
(defun hugot-ement-hook ()
(emojify-mode))

@ -50,6 +50,9 @@ var bashAliases string
//go:embed git/config
var gitConfig string
//go:embed config/pantalaimon/pantalaimon.conf
var pantalaimonConfig string
//go:embed git/ignore
var gitIgnore string
@ -410,12 +413,13 @@ func DumpInitFiles() error {
err := EnsureDirectory(elispThemeDir)
files := map[string]string{
home + "/.emacs": initLisp,
home + "/.custom.el": customLisp,
home + "/.bash_aliases": bashAliases,
elispThemeDir + "/epaper-theme.el": elispEpaperTheme,
home + "/.gitconfig": gitConfig,
home + "/.gitignore": gitIgnore,
home + "/.emacs": initLisp,
home + "/.custom.el": customLisp,
home + "/.bash_aliases": bashAliases,
elispThemeDir + "/epaper-theme.el": elispEpaperTheme,
home + "/.gitconfig": gitConfig,
home + "/.gitignore": gitIgnore,
home + "/.config/pantalaimon/pantalaimon.conf": pantalaimonConfig,
}
for file, contents := range files {

Loading…
Cancel
Save