|
|
@ -64,6 +64,7 @@ |
|
|
|
(setq nord-uniform-mode-lines t) |
|
|
|
(setq nord-uniform-mode-lines t) |
|
|
|
(load-theme 'nord t)) |
|
|
|
(load-theme 'nord t)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Modeline |
|
|
|
(use-package doom-modeline |
|
|
|
(use-package doom-modeline |
|
|
|
:ensure t |
|
|
|
:ensure t |
|
|
|
:init (doom-modeline-mode 1) |
|
|
|
:init (doom-modeline-mode 1) |
|
|
@ -73,6 +74,26 @@ |
|
|
|
(doom-modeline-hud t) |
|
|
|
(doom-modeline-hud t) |
|
|
|
(doom-modeline-icon t)) |
|
|
|
(doom-modeline-icon t)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Tabs for easier more modern nav |
|
|
|
|
|
|
|
(use-package centaur-tabs |
|
|
|
|
|
|
|
:ensure t |
|
|
|
|
|
|
|
:demand |
|
|
|
|
|
|
|
:config |
|
|
|
|
|
|
|
(centaur-tabs-mode t) |
|
|
|
|
|
|
|
(setq centaur-tabs-set-bar 'left |
|
|
|
|
|
|
|
;; all-the-icons support |
|
|
|
|
|
|
|
centaur-tabs-set-icons t |
|
|
|
|
|
|
|
centaur-tabs-gray-out-icons 'buffer |
|
|
|
|
|
|
|
centaur-tabs-height 24 |
|
|
|
|
|
|
|
centaur-tabs-set-modified-marker t |
|
|
|
|
|
|
|
centaur-tabs-modified-marker "•") |
|
|
|
|
|
|
|
;; This function is important to match the background to the theme. |
|
|
|
|
|
|
|
(centaur-tabs-headline-match) |
|
|
|
|
|
|
|
:hook |
|
|
|
|
|
|
|
;; This hook will ignore showing tabs in certain modes |
|
|
|
|
|
|
|
(dired-mode . centaur-tabs-local-mode) |
|
|
|
|
|
|
|
(magit-mode . centaur-tabs-local-mode)) |
|
|
|
|
|
|
|
|
|
|
|
;; Buffer configuration |
|
|
|
;; Buffer configuration |
|
|
|
(use-package all-the-icons-ibuffer |
|
|
|
(use-package all-the-icons-ibuffer |
|
|
|
:ensure t |
|
|
|
:ensure t |
|
|
|