.emacs.d/lisp/init-uniquify.el

16 lines
413 B
EmacsLisp
Raw Permalink Normal View History

2024-09-06 11:42:11 +02:00
;;; 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