Emacs: Replace Uniquify with relative-buffers
1 file changed, 4 insertions(+), 11 deletions(-)
changed files
M tag-emacs/emacs.d/init.org → tag-emacs/emacs.d/init.org
@@ -704,20 +704,13 @@ " " 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