Files
.emacs.d/modules/editor/siren-uniquify.el
Jim Myhrberg fe6a4e7ce5 fix(elisp): add lexical-binding comment to all files to suppress new Emacs 31 warnings
I've set `lexical-binding` to `nil` in all Emacs Lisp files to suppress
the warnings introduced in Emacs 31 requiring all elisp files to have a
`lexical-binding` comment.

This retains the default behavior of dynamic binding when no
`lexical-binding` comment is present. With it set to `t` across the
board, various things break, and fixing those is a task for another day.
2025-06-29 12:23:03 +01:00

23 lines
537 B
EmacsLisp

;;; siren-uniquify.el --- jimeh's Emacs Siren: uniquify configuration. -*- lexical-binding: nil; -*-
;;; Commentary:
;; Basic configuration for uniquify.
;;; Code:
(use-package uniquify
:straight (:type built-in)
:demand t
:custom
(uniquify-buffer-name-style 'post-forward-angle-brackets)
(uniquify-separator "/")
;; rename after killing uniquified
(uniquify-after-kill-buffer-p t)
;; don't muck with special buffers
(uniquify-ignore-buffers-re "^\\*"))
(provide 'siren-uniquify)
;;; siren-uniquify.el ends here