summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-03-11 08:24:39 -0600
committerCase Duckworth2021-03-11 08:24:39 -0600
commit43fcf5e6893ab5f7c6c564ce18081fc352dbe213 (patch)
tree5027f848039e1caebc276ba65ad5a495b04d31e0 /init.el
parentBump bankruptcy (diff)
downloademacs-43fcf5e6893ab5f7c6c564ce18081fc352dbe213.tar.gz
emacs-43fcf5e6893ab5f7c6c564ce18081fc352dbe213.zip
Uniquify
Diffstat (limited to 'init.el')
-rw-r--r--init.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/init.el b/init.el index 92d15b6..d458f96 100644 --- a/init.el +++ b/init.el
@@ -82,6 +82,13 @@
82 (default-process-coding-system (utf-8-unix . utf-8-unix)) 82 (default-process-coding-system (utf-8-unix . utf-8-unix))
83 (x-select-request-type (UTF8_STRING COMPOUND_TEXT TEXT STRING)))) 83 (x-select-request-type (UTF8_STRING COMPOUND_TEXT TEXT STRING))))
84 84
85;; Unique buffer names
86(when (require 'uniquify)
87 (acdw/set '((uniquify-buffer-name-style forward)
88 (uniquify-separator "/")
89 (uniquify-after-kill-buffer-p t)
90 (uniquify-ignore-buffers-re "^\\*"))))
91
85;; Backups 92;; Backups
86(acdw/set `((backup-by-copying t) 93(acdw/set `((backup-by-copying t)
87 (delete-old-versions -1) 94 (delete-old-versions -1)