Update init

This commit is contained in:
Marcus Kammer 2019-09-25 16:16:23 +02:00
parent d40faf32bc
commit aec4ad2362

12
init.el
View file

@ -1,3 +1,4 @@
(setq small-font "Iosevka Term-11")
(setq big-font "Iosevka Term-14")
;; start a server, unless one is already running
@ -37,7 +38,7 @@ There are two things you can do about this warning:
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
'(variable-pitch ((t (:family "Roboto")))))
(custom-set-variables
;; custom-set-variables was added by Custom.
@ -100,7 +101,7 @@ There are two things you can do about this warning:
'(global-hl-line-mode t)
'(icomplete-mode t)
'(indent-tabs-mode nil)
'(inferior-lisp-program (executable-find "sbcl"))
'(inferior-lisp-program (executable-find "sbcl") t)
'(inhibit-startup-screen t)
'(line-number-mode t)
'(line-spacing 3)
@ -133,7 +134,10 @@ There are two things you can do about this warning:
'(nord-comment-brightness 15)
'(nord-region-highlight "snowstorm")
'(nord-uniform-mode-lines t)
'(org-agenda-dim-blocked-tasks nil)
'(org-agenda-files (quote ("~/Documents/Journal")))
'(org-agenda-inhibit-startup nil)
'(org-agenda-use-tag-inheritance nil)
'(org-babel-load-languages
(quote
((js . t)
@ -292,8 +296,8 @@ There are two things you can do about this warning:
;; ================= ALWAYS AT THE END ================= ;;
;; Turn off chrome
;(dolist (mode '(menu-bar-mode tool-bar-mode scroll-bar-mode))
; (when (fboundp mode) (funcall mode -1)))
;; (dolist (mode '(menu-bar-mode tool-bar-mode scroll-bar-mode))
;; (when (fboundp mode) (funcall mode -1)))
;; Local Variables:
;; mode: emacs-lisp