diff options
author | Raúl Benencia <rul@kalgan.cc> | 2019-07-20 17:20:50 -0300 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2019-07-20 17:20:50 -0300 |
commit | 6ca2c0a3f7ba7b394413430d108ac61c2498e738 (patch) | |
tree | fde2b01141a8d358dbdc4b85d354f87ffe317586 /.emacs.local.d/modes/centaur-tabs.el | |
parent | 1ec06821b20b17cddae14dfac878b13ac6462b36 (diff) |
centaur tabs in emacs
Diffstat (limited to '.emacs.local.d/modes/centaur-tabs.el')
-rw-r--r-- | .emacs.local.d/modes/centaur-tabs.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.emacs.local.d/modes/centaur-tabs.el b/.emacs.local.d/modes/centaur-tabs.el new file mode 100644 index 0000000..00a2940 --- /dev/null +++ b/.emacs.local.d/modes/centaur-tabs.el @@ -0,0 +1,11 @@ +(use-package centaur-tabs + :demand + :config + (centaur-tabs-mode t) + :bind + ("C-<prior>" . centaur-tabs-backward) + ("C-<next>" . centaur-tabs-forward)) + +(setq centaur-tabs-style "bar") +(setq centaur-tabs-set-icons t) +(setq centaur-tabs-height 32) |