diff options
author | Ryan Kavanagh <rak@rak.ac> | 2021-10-25 14:09:49 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2021-10-25 14:09:49 -0400 |
commit | 6c99cf58596eca948156585fe2a1a7972b6aabad (patch) | |
tree | 27030d2de63af5e4f78fd69a609039588da1e184 /.emacs | |
parent | which deprecated in favour of command -v (diff) |
make theming hostname dependent in emacs
Diffstat (limited to '')
-rw-r--r-- | .emacs | 19 |
1 files changed, 12 insertions, 7 deletions
@@ -34,6 +34,18 @@ :custom-face (default ((t (:family "Input Mono" :foundry "FBI " :slant normal :weight normal :height 89 :width normal))))) +(if (string= (system-name) "demeter.rak.ac") + (use-package leuven-theme ; nice theme for lecturing / projectors + :ensure t + :config + (load-theme 'leuven t)) + (use-package moe-theme + :ensure t + :after powerline ; must be loaded after for powerline-moe-theme to work + :config + (moe-dark) + (powerline-moe-theme))) + ;; (use-package auctex ;; :config ;; ;; From @@ -453,13 +465,6 @@ Otherwise split the current paragraph into one sentence per line." ;; Cycle through tab-completions with tab if there are less than 5 (setq completion-cycle-threshold 5)) -(use-package moe-theme - :ensure t - :after powerline ; must be loaded after for powerline-moe-theme to work - :config - (moe-dark) - (powerline-moe-theme)) - (use-package ocp-indent :ensure t) |