diff options
author | Squibid <me@zacharyscheiman.com> | 2024-03-29 21:24:00 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-03-29 21:24:00 -0400 |
commit | d3512c5e88a24d3d8af8cc9d4e11d82d94d90951 (patch) | |
tree | 73a7691ddd8c541c607204a95a1b62dc3cbd2a4b | |
parent | 4b3c901520a17506fd178b1e90404536742c69d3 (diff) | |
download | nvim-d3512c5e88a24d3d8af8cc9d4e11d82d94d90951.tar.gz nvim-d3512c5e88a24d3d8af8cc9d4e11d82d94d90951.tar.bz2 nvim-d3512c5e88a24d3d8af8cc9d4e11d82d94d90951.zip |
modify keybinds a bit
-rw-r--r-- | lua/conf/binds.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/conf/binds.lua b/lua/conf/binds.lua index b06bd2f..1e1b04a 100644 --- a/lua/conf/binds.lua +++ b/lua/conf/binds.lua @@ -52,7 +52,7 @@ a.nvim_create_autocmd('FileType', { map('n', '[]', '<cmd>tabnew<CR>') map('n', '][', '<cmd>tabc<CR>') map('n', '[[', '<cmd>tabp<CR>') -map('n', ']]', '<cmd>tabN<CR>') +map('n', ']]', '<cmd>tabn<CR>') -- config binds --------------------------------------------------------------- map('n', '<leader>m', conf.configmenu, { desc = 'Neovim config manager menu', }) @@ -126,7 +126,7 @@ end map('n', '<leader>u', '<cmd>UndotreeToggle<CR>', { desc = 'Open undo tree.' }) map('n', '<leader>f', '<cmd>SFMToggle<CR>', { desc = 'Open file tree view.' }) -map('n', '<leader>b', '<cmd>JABSOpen<CR>', { desc = 'Switch between buffers.' }) +map('n', '<C-j>', '<cmd>JABSOpen<CR>', { desc = 'Switch between buffers.' }) if pcall(require, "smart-splits") then local smartsplits = require('smart-splits') -- resizing buffers (toggleable) |