diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2023-03-11 18:14:27 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2023-03-11 18:14:27 -0500 |
commit | f9986a8179655a57e76424ed5430f1c929ce14c8 (patch) | |
tree | adf2394071f09ad7b27758e43d35438560a286bf /emacs | |
parent | 23f93a089ccf47706d791ae556cc57635689f249 (diff) |
config
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.config/emacs-kj/init.el | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/emacs/.config/emacs-kj/init.el b/emacs/.config/emacs-kj/init.el index 8130051..3e10e47 100644 --- a/emacs/.config/emacs-kj/init.el +++ b/emacs/.config/emacs-kj/init.el @@ -43,8 +43,7 @@ (setq sentence-end-double-space nil) (setq save-interprogram-paste-before-kill t) (setq enable-recursive-minibuffers t) -;; This interferes with meow highlighting with some themes. -; (global-hl-line-mode 1) +(global-hl-line-mode 1) (global-auto-revert-mode 1) (setq visible-bell t @@ -60,15 +59,18 @@ (use-package doom-themes) +(setq doom-ayu-mirage-brighter-comments t) +(load-theme 'doom-ayu-mirage) + ;; ;; Modus theme setup. -(use-package emacs - :init - ;; Add all your customizations prior to loading the themes - (setq modus-themes-region '(accented)) - :config - ;; Load the theme of your choice: - (load-theme 'modus-operandi) ;; OR (load-theme 'modus-vivendi) - :bind ("<f5>" . modus-themes-toggle)) +;; (use-package emacs +;; :init +;; ;; Add all your customizations prior to loading the themes +;; (setq modus-themes-region '(accented)) +;; :config +;; ;; Load the theme of your choice: +;; (load-theme 'modus-operandi) ;; OR (load-theme 'modus-vivendi) +;; :bind ("<f5>" . modus-themes-toggle)) (setq alert-default-style 'libnotify) @@ -81,10 +83,14 @@ :if (display-graphic-p))) (setq inhibit-compacting-font-caches t) (setq use-dialog-box nil) +(display-battery-mode 1) +(display-time-mode 1) (use-package doom-modeline :ensure t - :init (doom-modeline-mode 1)) + :init (doom-modeline-mode 1) + :config + (setq doom-modeline-buffer-encoding 'nondefault)) (use-package emojify :bind @@ -786,6 +792,7 @@ ("C-(" . mc/mark-all-words-like-this-in-defun) ("M-(" . mc/mark-all-like-this-in-defun) :exit + ("s" . shell) ("$" . eshell) ("b" . consult-buffer)) |