@ -28,6 +28,12 @@ customize settings in [[file:init.el][init.el]].
* Theme
* Theme
** Font
#+begin_src emacs-lisp
(set-face-attribute 'default nil :font "Hack-12")
#+end_src
** Material Theme
** Material Theme
The [[https://github.com/cpaulik/emacs-material-theme][Material Theme]] comes in a dark and a light variant. Not too dark
The [[https://github.com/cpaulik/emacs-material-theme][Material Theme]] comes in a dark and a light variant. Not too dark
to be strenious though.
to be strenious though.
@ -37,11 +43,22 @@ to be strenious though.
:if (window-system)
:if (window-system)
:defer t
:defer t
:ensure t
:ensure t
:init
(load-theme 'material t)
;; :init
;; (load-theme 'material t)
)
)
#+end_src
#+end_src
** Apropospriate Theme
Variants dark and light
#+begin_src emacs-lisp
(use-package apropospriate-theme
:if (window-system)
:defer t
:ensure t
:init
(load-theme 'apropospriate-dark t)
)
#+end_src
* Sane defaults
* Sane defaults
Sources for this section include [[https://github.com/magnars/.emacs.d/blob/master/settings/sane-defaults.el][Magnars Sveen]] and [[http://pages.sachachua.com/.emacs.d/Sacha.html][Sacha Chua]]
Sources for this section include [[https://github.com/magnars/.emacs.d/blob/master/settings/sane-defaults.el][Magnars Sveen]] and [[http://pages.sachachua.com/.emacs.d/Sacha.html][Sacha Chua]]
@ -376,6 +393,9 @@ Addon to sort suggestions by usage
#+end_src
#+end_src
Get a popup with documentation of the completion candidate.
Get a popup with documentation of the completion candidate.
For the popups the package pos-tip.el is used and automatically installed.