Better startup (and better terminal mode)

This commit is contained in:
Howland Owl 2018-06-16 13:52:48 +03:00
parent 3501226351
commit 8f3148cf04

View file

@ -112,6 +112,19 @@
:ensure t
:defer t)
(use-package helm-unicode
:ensure t
:defer t)
(use-package color-theme-solarized
:ensure t
:defer t)
(use-package subatomic256-theme
:ensure t
:defer t
)
;; kill the damned gnu screen
(setq inhibit-startup-screen t)
@ -304,12 +317,14 @@
(defun add-fira-code-symbol-keywords ()
(font-lock-add-keywords nil fira-code-font-lock-keywords-alist))
(add-hook 'prog-mode-hook
#'add-fira-code-symbol-keywords)
(if window-system
(add-hook 'prog-mode-hook
#'add-fira-code-symbol-keywords)
)
(if window-system
(load-theme 'anti-zenburn t)
(load-theme 'solarized t))
(load-theme 'subatomic256 t))
; screen size is off for some reason uless this is toggled on and off
(menu-bar-mode)