mirror of
https://github.com/danielepintore/dotfiles.git
synced 2026-07-24 05:25:12 +02:00
feat(terminal): Use wezterm nightly as new terminal emulator
This commit is contained in:
14
.config/nvim/lua/plugins/smart-splits.lua
Normal file
14
.config/nvim/lua/plugins/smart-splits.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
return {
|
||||
'mrjones2014/smart-splits.nvim',
|
||||
lazy = false,
|
||||
keys = {
|
||||
{ "<C-h>", function() require("smart-splits").move_cursor_left() end },
|
||||
{ "<C-j>", function() require("smart-splits").move_cursor_down() end },
|
||||
{ "<C-k>", function() require("smart-splits").move_cursor_up() end },
|
||||
{ "<C-l>", function() require("smart-splits").move_cursor_right() end },
|
||||
{ "<C-S-h>", function() require("smart-splits").resize_left(5) end },
|
||||
{ "<C-S-J>", function() require("smart-splits").resize_down(5) end },
|
||||
{ "<C-S-K>", function() require("smart-splits").resize_up(5) end },
|
||||
{ "<C-S-L>", function() require("smart-splits").resize_right(5) end },
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user