author | Alan Dipert
<alan@dipert.org> 2024-01-19 17:25:57 UTC |
committer | Alan Dipert
<alan@dipert.org> 2024-01-19 17:25:57 UTC |
parent | 5bf2c0e4ba74d0bec6619f7ba5be8aaae2c55fbc |
init.el | +11 | -1 |
diff --git a/init.el b/init.el index 52a262f..978fcbb 100644 --- a/init.el +++ b/init.el @@ -35,7 +35,7 @@ (js-indent-level 2) (linum-format "%d ") (lisp-indent-offset t) - (menu-bar-mode t) + (menu-bar-mode nil) (sh-basic-offset 2) (tab-always-indent 'complete) (tab-width 2) @@ -114,6 +114,16 @@ (use-package paredit) +(use-package wgrep + :custom + (wgrep-auto-save-buffer t)) + +(use-package color-theme-sanityinc-tomorrow + :config + (load-theme 'sanityinc-tomorrow-blue t) + (set-face-background 'region "white") + (set-face-background 'region "blue")) + (defvar local/sexp-keymap (let ((keymap (make-keymap))) (define-key keymap (kbd "(") 'paredit-wrap-round)