summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2022-01-03 15:17:18 -0600
committerCase Duckworth2022-01-03 15:17:18 -0600
commit69ed56fed8e3c6f3cf19614da6afbc4371e6d2d1 (patch)
treefe276d6bb049e6301f674316f3548a7fd605147c /init.el
parentDon't require _work until it's needed (diff)
downloademacs-69ed56fed8e3c6f3cf19614da6afbc4371e6d2d1.tar.gz
emacs-69ed56fed8e3c6f3cf19614da6afbc4371e6d2d1.zip
Change truncation ellipsis
Diffstat (limited to 'init.el')
-rw-r--r--init.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/init.el b/init.el index 0d4716b..13de7ce 100644 --- a/init.el +++ b/init.el
@@ -23,12 +23,14 @@
23 private)) 23 private))
24 (require (or (car-safe feature) feature) (cdr-safe feature) :noerror)) 24 (require (or (car-safe feature) feature) (cdr-safe feature) :noerror))
25 25
26(setq debug-on-error t)
27
26(setup (:require +emacs) 28(setup (:require +emacs)
27 (:also-load +lisp) 29 (:also-load +lisp)
28 ;; +emacs.el contains super-basic defaults that are basically necessary for 30 ;; +emacs.el contains super-basic defaults that are basically necessary for
29 ;; good functioning. In this block, I add extra things or more "experimental" 31 ;; good functioning. In this block, I add extra things or more "experimental"
30 ;; ones that might not belong in a separate file. 32 ;; ones that might not belong in a separate file.
31 (:option truncate-string-ellipsis "~") 33 (:option truncate-string-ellipsis "")
32 ;; Bindings 34 ;; Bindings
33 (:global "C-x C-k" #'kill-current-buffer 35 (:global "C-x C-k" #'kill-current-buffer
34 "C-x 4 n" #'clone-buffer 36 "C-x 4 n" #'clone-buffer
@@ -378,8 +380,8 @@
378 org-clock-persist t 380 org-clock-persist t
379 org-confirm-babel-evaluate nil 381 org-confirm-babel-evaluate nil
380 org-cycle-separator-lines 0 382 org-cycle-separator-lines 0
381 org-directory "~/org" 383 org-directory (sync/ "org/" t)
382 org-ellipsis "…" 384 org-ellipsis truncate-string-ellipsis
383 org-export-coding-system 'utf-8-unix 385 org-export-coding-system 'utf-8-unix
384 org-export-headline-levels 8 386 org-export-headline-levels 8
385 org-export-with-section-numbers nil 387 org-export-with-section-numbers nil