working system
This commit is contained in:
commit
e0ad4ea627
53 changed files with 2927 additions and 0 deletions
15
lisp/init-uniquify.el
Normal file
15
lisp/init-uniquify.el
Normal file
|
@ -0,0 +1,15 @@
|
|||
;;; init-uniquify.el --- Configure uniquification of buffer names -*- lexical-binding: t -*-
|
||||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
;; Nicer naming of buffers for files with identical names
|
||||
(require 'uniquify)
|
||||
|
||||
(setq uniquify-buffer-name-style 'reverse)
|
||||
(setq uniquify-separator " • ")
|
||||
(setq uniquify-after-kill-buffer-p t)
|
||||
(setq uniquify-ignore-buffers-re "^\\*")
|
||||
|
||||
|
||||
(provide 'init-uniquify)
|
||||
;;; init-uniquify.el ends here
|
Loading…
Add table
Add a link
Reference in a new issue