diff options
-rw-r--r-- | config.org | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/config.org b/config.org index ac86e80..14ef1cd 100644 --- a/config.org +++ b/config.org | |||
@@ -379,6 +379,47 @@ By default, Emacs loads themes on top of each other. I don't want that, so let' | |||
379 | (which-key-mode)) | 379 | (which-key-mode)) |
380 | #+end_src | 380 | #+end_src |
381 | 381 | ||
382 | ** Miscellaneous settings | ||
383 | |||
384 | *** Set view mode when in a read-only file | ||
385 | |||
386 | #+begin_src emacs-lisp | ||
387 | (cuss view-read-only t) | ||
388 | #+end_src | ||
389 | |||
390 | *** Don't use dialog boxen | ||
391 | |||
392 | #+begin_src emacs-lisp | ||
393 | (cuss use-dialog-box nil) | ||
394 | #+end_src | ||
395 | |||
396 | *** Enable all functions | ||
397 | |||
398 | #+begin_src emacs-lisp | ||
399 | (cuss disabled-command-function nil) | ||
400 | #+end_src | ||
401 | |||
402 | *** Shorter confirmations | ||
403 | |||
404 | #+begin_src emacs-lisp | ||
405 | (fset 'yes-or-no-p #'y-or-n-p) | ||
406 | #+end_src | ||
407 | |||
408 | *** Uniquify buffer names | ||
409 | |||
410 | #+begin_src emacs-lisp | ||
411 | (cuss uniquify-buffer-name-style 'forward) | ||
412 | #+end_src | ||
413 | |||
414 | *** Show buffer boundaries | ||
415 | |||
416 | #+begin_src emacs-lisp | ||
417 | (cuss indicate-buffer-boundaries | ||
418 | '((top . right) | ||
419 | (bottom . right) | ||
420 | (t . nil))) | ||
421 | #+end_src | ||
422 | |||
382 | * Persistence | 423 | * Persistence |
383 | 424 | ||
384 | ** Auto-saves | 425 | ** Auto-saves |