nvim-config/lua/plugins/vim-tmux-navigator.lua
2024-12-24 23:01:45 -06:00

12 lines
311 B
Lua

-- 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,
}