Add tmux support
This commit is contained in:
15
lua/plugins/tmux.lua
Normal file
15
lua/plugins/tmux.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
return {
|
||||
'alexghergh/nvim-tmux-navigation',
|
||||
config = function()
|
||||
require 'nvim-tmux-navigation'.setup {
|
||||
disable_when_zoomed = false, -- defaults to false
|
||||
keybindings = {
|
||||
left = "<C-h>",
|
||||
down = "<C-j>",
|
||||
up = "<C-k>",
|
||||
right = "<C-l>",
|
||||
last_active = "<C-\\>",
|
||||
}
|
||||
}
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user