diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-03-03 01:36:20 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-03-03 01:36:20 +0100 |
commit | 01bb533f4fc441c9e12a44fd907877c5d5d725f3 (patch) | |
tree | ec61a86570935d1afaca655a898be755e3604d18 | |
parent | fmt (diff) | |
download | nixos-config-01bb533f4fc441c9e12a44fd907877c5d5d725f3.tar.gz nixos-config-01bb533f4fc441c9e12a44fd907877c5d5d725f3.tar.bz2 nixos-config-01bb533f4fc441c9e12a44fd907877c5d5d725f3.zip |
Dotfiles: Emacs: Add centaur-tabs
-rw-r--r-- | dotfiles/.emacs | 6 | ||||
-rw-r--r-- | hosts/home.nix | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/dotfiles/.emacs b/dotfiles/.emacs index 847d0b6..bf57f95 100644 --- a/dotfiles/.emacs +++ b/dotfiles/.emacs @@ -219,6 +219,12 @@ (:map evil-normal-state-map ("C-n" . minimap-mode))) +(use-package centaur-tabs + :ensure t + :bind + (:map evil-normal-state-map + ("C-t" . centaur-tabs-mode))) + (eval-after-load 'dired '(evil-define-key 'normal dired-mode-map [mouse-2] 'dired-mouse-find-file) ) diff --git a/hosts/home.nix b/hosts/home.nix index b64cf1d..9b2a1b8 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -184,6 +184,7 @@ dired-sidebar minimap + centaur-tabs ]; extraConfig = builtins.readFile "${dotfiles}/.emacs"; }; |