From 73c64f4f902f2f9af2094da77de7398423564bc7 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcus-kammer@users.noreply.gitlab.com> Date: Wed, 17 Jul 2019 19:36:05 +0200 Subject: [PATCH] Update init --- init.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 265e816c..886234ef 100755 --- a/init.el +++ b/init.el @@ -40,6 +40,7 @@ There are two things you can do about this warning: '(custom-safe-themes (quote ("4515feff287a98863b7b7f762197a78a7c2bfb6ec93879e7284dff184419268c" default))) + '(delete-selection-mode t) '(diary-file "~/Documents/Diary/diary") '(display-battery-mode nil) '(display-line-numbers (quote relative)) @@ -87,7 +88,7 @@ There are two things you can do about this warning: '(package-enable-at-startup t) '(package-selected-packages (quote - (powershell helm gitconfig-mode gitignore-mode ox-rst typescript-mode ## skewer-mode ob-http ob-ipython ob-restclient linum-relative markdown-mode nord-theme restclient request restclient-test yaml-mode magit))) + (slime powershell helm gitconfig-mode gitignore-mode ox-rst typescript-mode ## skewer-mode ob-http ob-ipython ob-restclient linum-relative markdown-mode nord-theme restclient request restclient-test yaml-mode magit))) '(require-final-newline t) '(size-indication-mode nil) '(timeclock-file "~/Documents/Diary/timelog") @@ -198,3 +199,7 @@ There are two things you can do about this warning: ) ;;(global-set-key (kbd "C-d") 'duplicate-line) (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)) + +;; slime +(setq inferior-lisp-program "/usr/bin/clisp") +(setq slime-contribs '(slime-fancy))