diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2024-06-26 12:18:32 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2024-06-26 12:18:32 +0800 |
commit | 44f31b1f27c2a53cf8a4e053a50c245e379558b0 (patch) | |
tree | 4c52906716f76057d799d6ea1effcc40deae007a /vim/lua/chadrc.lua | |
parent | d415bbb33a1c2a3f9a2492668b57c4db0098ef1d (diff) |
Update
Diffstat (limited to 'vim/lua/chadrc.lua')
-rw-r--r-- | vim/lua/chadrc.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vim/lua/chadrc.lua b/vim/lua/chadrc.lua index aa0d78c..aa9a78c 100644 --- a/vim/lua/chadrc.lua +++ b/vim/lua/chadrc.lua | |||
@@ -41,6 +41,8 @@ if M.ui.tabufline.enabled then | |||
41 | vim.keymap.set("n", "<A-l>", function() require("nvchad.tabufline").move_buf(1) end) | 41 | vim.keymap.set("n", "<A-l>", function() require("nvchad.tabufline").move_buf(1) end) |
42 | vim.keymap.set("n", "<A-H>", function() vim.cmd("tabprevious") end) | 42 | vim.keymap.set("n", "<A-H>", function() vim.cmd("tabprevious") end) |
43 | vim.keymap.set("n", "<A-L>", function() vim.cmd("tabnext") end) | 43 | vim.keymap.set("n", "<A-L>", function() vim.cmd("tabnext") end) |
44 | vim.keymap.set("n", "<tab>", function() require("nvchad.tabufline").next() end, { desc = "buffer goto next" }) | ||
45 | vim.keymap.set("n", "<S-tab>", function() require("nvchad.tabufline").prev() end, { desc = "buffer goto prev" }) | ||
44 | end | 46 | end |
45 | 47 | ||
46 | 48 | ||