feat(config): Add Centaur tabs keybindings for

Meow mode

Enable tabs module and add keybindings for navigating Centaur tabs in
Meow normal state. Map leader + w h/l to move backward/forward between
tabs. Also disable everywhere and rss modules to streamline configuration.
This commit is contained in:
Zelong Kuang
2025-12-09 01:04:15 +11:00
parent ae43aedfcb
commit 6d90846eda
3 changed files with 19 additions and 6 deletions

View File

@@ -70,6 +70,11 @@
(setq gptel-backend (gptel-make-gh-copilot "Copilot"))
)
(map! :map meow-normal-state-keymap
:leader "w l" 'centaur-tabs-forward)
(map! :map meow-normal-state-keymap
:leader "w h" 'centaur-tabs-backward)
(use-package! typst-ts-mode
:init
(add-hook 'typst-ts-mode-hook #'eglot-ensure)