summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'tag-emacs/emacs.d/init.org')
-rw-r--r--tag-emacs/emacs.d/init.org15
1 files changed, 4 insertions, 11 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index c78c62a..75ef27d 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -704,20 +704,13 @@ often though, as it doesn’t really work with perspectives.
                           filename-and-process)))))
 #+END_SRC
 
-** Uniqify
-
-Sometimes projects have files with the same name.  This gives them
-unique names, by adding enough path elements to make them unambiguous.
+** Relative Buffer names
 
 #+BEGIN_SRC emacs-lisp
-(req-package uniquify
-  :config (progn
-            (setq uniquify-buffer-name-style 'forward
-                  uniquify-separator "/"
-                  uniquify-after-kill-buffer-p t
-                  uniquify-ignore-buffers-re "^\\*")))
+  (req-package relative-buffers
+    :init (progn
+            (global-relative-buffers-mode)))
 #+END_SRC
-
 ** Narrowing
 
 Enable it without prompting