first commit
This commit is contained in:
commit
15e643aa8e
41 changed files with 1623 additions and 0 deletions
12
lua/plugins/vim-tmux-navigator.lua
Normal file
12
lua/plugins/vim-tmux-navigator.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
-- Navigate nvim and tmux windows/panels with vim bindings
|
||||
return {
|
||||
-- https://github.com/christoomey/vim-tmux-navigator
|
||||
'christoomey/vim-tmux-navigator',
|
||||
-- Only load this plugin if tmux is being used
|
||||
event = function()
|
||||
if vim.fn.exists("$TMUX") == 1 then
|
||||
return "VeryLazy"
|
||||
end
|
||||
end,
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue