Add configuration to uniquify files with same name with the parent folder instead <2>,<3> etc...

This commit is contained in:
syl20bnr 2013-05-06 21:08:10 -04:00
parent de995e2950
commit 8958403e24

View file

@ -8,6 +8,11 @@
(setq make-backup-files nil)
(setq auto-save-default nil)
(setq create-lockfiles nil)
;; When having windows with repeated filenames, uniquify them
;; by the folder they are in rather those annoying <2>,<3>,.. etc
(setq uniquify-buffer-name-style 'post-forward-angle-brackets)
; don't screw special buffers
(setq uniquify-ignore-buffers-re "^\\*")
;; Save point position between sessions
(require 'saveplace)
(setq-default save-place t)