12 lines
		
	
	
	
		
			311 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			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,
 | |
| }
 | |
| 
 | 
