fix tmux navigation
This commit is contained in:
parent
aeda582122
commit
0842439e34
|
|
@ -1,19 +1,16 @@
|
||||||
local plugins = {
|
return {
|
||||||
"alexghergh/nvim-tmux-navigation",
|
'alexghergh/nvim-tmux-navigation',
|
||||||
lazy = false,
|
|
||||||
config = function()
|
config = function()
|
||||||
require("nvim-tmux-navigation").setup {
|
require('nvim-tmux-navigation').setup {
|
||||||
disable_when_zoomed = true, -- defaults to false
|
disable_when_zoomed = true, -- defaults to false
|
||||||
keybindings = {
|
keybindings = {
|
||||||
left = "<C-h>",
|
left = '<C-h>',
|
||||||
down = "<C-j>",
|
down = '<C-j>',
|
||||||
up = "<C-k>",
|
up = '<C-k>',
|
||||||
right = "<C-l>",
|
right = '<C-l>',
|
||||||
last_active = "<C-\\>",
|
last_active = '<C-\\>',
|
||||||
next = "<C-Space>",
|
next = '<C-Space>',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
return plugins
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue