diff options
author | Case Duckworth | 2021-12-30 23:07:58 -0600 |
---|---|---|
committer | Case Duckworth | 2021-12-30 23:07:58 -0600 |
commit | 8e4d03f44d7467a7d54c0aa47086ddea3a73b859 (patch) | |
tree | b65452d82a72dab2d9b4a66e8ea1e2562446ad03 /lisp | |
parent | Uh, things (diff) | |
download | emacs-8e4d03f44d7467a7d54c0aa47086ddea3a73b859.tar.gz emacs-8e4d03f44d7467a7d54c0aa47086ddea3a73b859.zip |
More stuff
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/+emacs.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/+emacs.el b/lisp/+emacs.el index 39b064c..792da40 100644 --- a/lisp/+emacs.el +++ b/lisp/+emacs.el | |||
@@ -63,6 +63,7 @@ Do this only if the buffer is not visiting a file." | |||
63 | frame-resize-pixelwise t | 63 | frame-resize-pixelwise t |
64 | global-auto-revert-non-file-buffers t | 64 | global-auto-revert-non-file-buffers t |
65 | global-mark-ring-max 100 | 65 | global-mark-ring-max 100 |
66 | hscroll-margin 1 | ||
66 | hscroll-step 1 | 67 | hscroll-step 1 |
67 | imenu-auto-rescan t | 68 | imenu-auto-rescan t |
68 | indent-tabs-mode nil | 69 | indent-tabs-mode nil |
@@ -83,6 +84,7 @@ Do this only if the buffer is not visiting a file." | |||
83 | 'face 'minibuffer-prompt) | 84 | 'face 'minibuffer-prompt) |
84 | mode-require-final-newline 'visit-save | 85 | mode-require-final-newline 'visit-save |
85 | mouse-drag-copy-region t | 86 | mouse-drag-copy-region t |
87 | mouse-wheel-progressive-speed nil | ||
86 | mouse-yank-at-point t | 88 | mouse-yank-at-point t |
87 | native-comp-async-report-warnings-errors 'silent | 89 | native-comp-async-report-warnings-errors 'silent |
88 | read-answer-short t | 90 | read-answer-short t |
@@ -95,8 +97,11 @@ Do this only if the buffer is not visiting a file." | |||
95 | regexp-search-ring-max 200 | 97 | regexp-search-ring-max 200 |
96 | save-interprogram-paste-before-kill t | 98 | save-interprogram-paste-before-kill t |
97 | scroll-conservatively 101 | 99 | scroll-conservatively 101 |
100 | scroll-down-aggressively 0.01 | ||
101 | scroll-margin 1 | ||
98 | scroll-preserve-screen-position 1 | 102 | scroll-preserve-screen-position 1 |
99 | scroll-step 1 | 103 | scroll-step 1 |
104 | scroll-up-aggressively 0.01 | ||
100 | search-ring-max 200 | 105 | search-ring-max 200 |
101 | search-ring-max 200 | 106 | search-ring-max 200 |
102 | sentence-end-double-space t | 107 | sentence-end-double-space t |
@@ -212,7 +217,7 @@ kill without asking." | |||
212 | (and (not arg))) | 217 | (and (not arg))) |
213 | (when (yes-or-no-p "Sure you want to quit? ") | 218 | (when (yes-or-no-p "Sure you want to quit? ") |
214 | (save-buffers-kill-emacs)) | 219 | (save-buffers-kill-emacs)) |
215 | (server-save-buffers-kill-terminal nil))) | 220 | (delete-frame nil :force))) |
216 | 221 | ||
217 | ;; ... and advice | 222 | ;; ... and advice |
218 | 223 | ||