diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-05-02 23:44:17 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-05-02 23:44:17 -0400 |
commit | c503a5b796e28b8deaa7ecba5523bdb1ef786f57 (patch) | |
tree | c15ea2031fafc0612b4bc6901db3b4d712d1fcda | |
parent | 502830119fddb13d963ed2bdcaf852eb809ef34c (diff) | |
download | emacs.d-c503a5b796e28b8deaa7ecba5523bdb1ef786f57.tar.gz |
Set uniquify-buffer-name-style
-rw-r--r-- | lisp/init-buffile.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/init-buffile.el b/lisp/init-buffile.el index a80160f..f0293b1 100644 --- a/lisp/init-buffile.el +++ b/lisp/init-buffile.el @@ -1,5 +1,9 @@ ;;; Files and buffers +(require 'uniquify) + +(setq uniquify-buffer-name-style 'forward) + (defun km/rename-current-buffer-file () "Rename current buffer and file it is visiting." (interactive) |