nvim,tmux: move split nav to Alt+hjkl, add tab cycling, set DIFFPROG

- smart-splits: C-hjkl → A-hjkl for split/pane navigation
- tmux: C-hjkl → M-hjkl to keep seamless smart-splits integration
- keymaps: add A-Tab / A-S-Tab for vim tab cycling
- profile: set DIFFPROG="nvim -d" for pacdiff
This commit is contained in:
2026-04-12 13:26:26 +02:00
parent 7dbd0f18c3
commit b69728ed3b
4 changed files with 13 additions and 8 deletions

View File

@@ -41,3 +41,7 @@ map({ "n", "i" }, "<C-s>", "<cmd>w<cr>", { desc = "Save" })
-- Quit
map("n", "<leader>q", "<cmd>q<cr>", { desc = "Quit" })
map("n", "<leader>Q", "<cmd>qa<cr>", { desc = "Quit all" })
-- Tab navigation
map("n", "<A-Tab>", "<cmd>tabnext<cr>", { desc = "Next tab" })
map("n", "<A-S-Tab>", "<cmd>tabprevious<cr>", { desc = "Prev tab" })