diff options
-rw-r--r-- | init.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/init.el b/init.el index e2a7d77..0e2f5dd 100644 --- a/init.el +++ b/init.el | |||
@@ -85,6 +85,11 @@ | |||
85 | (left-fringe-width . 2) | 85 | (left-fringe-width . 2) |
86 | (right-fringe-width . 2))) | 86 | (right-fringe-width . 2))) |
87 | 87 | ||
88 | ;; also disable these with modes, so I can re-enable them more easily | ||
89 | (menu-bar-mode -1) | ||
90 | (tool-bar-mode -1) | ||
91 | (scroll-bar-mode -1) | ||
92 | |||
88 | ;; cursor | 93 | ;; cursor |
89 | (cuss cursor-type 'bar) | 94 | (cuss cursor-type 'bar) |
90 | (cuss cursor-in-non-selected-windows 'hollow) | 95 | (cuss cursor-in-non-selected-windows 'hollow) |
@@ -102,6 +107,9 @@ | |||
102 | ;; interactivity | 107 | ;; interactivity |
103 | (fset 'yes-or-no-p #'y-or-n-p) | 108 | (fset 'yes-or-no-p #'y-or-n-p) |
104 | 109 | ||
110 | (cuss use-dialog-box nil) | ||
111 | (cuss disabled-command-function nil) | ||
112 | |||
105 | ;; themes | 113 | ;; themes |
106 | (use-package modus-operandi-theme | 114 | (use-package modus-operandi-theme |
107 | :config | 115 | :config |