diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-08-23 17:01:31 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-08-23 17:03:03 +0100 |
commit | 740017257461dd442a482521fb1d2c85ddaf66d8 (patch) | |
tree | 6da7470a80991efcf5354fe26526e52f9b5e6139 /.emacs.d/lisp/init-windows.el | |
parent | 1cdae221a17228784646c6fd01cba69c51133afe (diff) | |
download | dotfiles-740017257461dd442a482521fb1d2c85ddaf66d8.tar.gz |
Move uniquify
Diffstat (limited to '.emacs.d/lisp/init-windows.el')
-rw-r--r-- | .emacs.d/lisp/init-windows.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-windows.el b/.emacs.d/lisp/init-windows.el index a80f6bf..7876588 100644 --- a/.emacs.d/lisp/init-windows.el +++ b/.emacs.d/lisp/init-windows.el @@ -47,6 +47,11 @@ ("C-S-<left>" . buf-move-left) ("C-S-<right>" . buf-move-right))) +(use-package uniquify + :ensure nil + :custom + (uniquify-buffer-name-style 'forward)) + (use-package fullframe :after (magit dashboard) :config |