diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-01-07 23:05:38 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-01-07 23:05:38 -0600 |
commit | be24bf158fb017d085e47b0146ba3acdb1b38eb9 (patch) | |
tree | c0fa3962bf8fab00dc5ed46f398428a8e965d73c /common | |
parent | ba18e42a2b535acaa0c6839a15ed647a8d71e3fb (diff) |
system changes
Diffstat (limited to 'common')
-rw-r--r-- | common/.config/emacs/init.el.org | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index 27799cf..ee8c154 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -69,19 +69,19 @@ Set up fonts. I use Source Code Pro (Nerd Font) for monospace and Computer Moder This block is the reason I use =straight= rather than just =use-package=. I have a custom Emacs theme that comes from my own fork of =doom-themes=. I also use =doom-modeline= and =nerd-icons= for a nicer-looking user interface and remove the title bar from the window along with any other unnecessary elements from the screen. =dired= is modified to use =nerd-icons= and colours. #+begin_src emacs-lisp - (use-package doom-themes - :straight - (doom-themes :type git - :host github - :repo "doomemacs/themes" - :fork - (:host github - :repo "JacobJanzen/emacs-doom-themes")) - :config - (setq doom-themes-enable-bold t - doom-themes-enable-italic t) - (load-theme 'doom-pink t) - (doom-themes-org-config)) + ;; (use-package doom-themes + ;; :straight + ;; (doom-themes :type git + ;; :host github + ;; :repo "doomemacs/themes" + ;; :fork + ;; (:host github + ;; :repo "JacobJanzen/emacs-doom-themes")) + ;; :config + ;; (setq doom-themes-enable-bold t + ;; doom-themes-enable-italic t) + ;; (load-theme 'doom-pink t) + ;; (doom-themes-org-config)) (use-package doom-modeline :init (doom-modeline-mode 1)) |