This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
opdavies.nvim/after/plugin/nvim-tmux-navigation.lua
Oliver Davies 3cfe6444c6 Use alexghergh/nvim-tmux-navigation
Replace `christoomey/vim-tmux-navigator` with
`alexghergh/nvim-tmux-navigation`.

https://github.com/alexghergh/nvim-tmux-navigation
2024-02-27 17:32:24 +00:00

13 lines
227 B
Lua

require("nvim-tmux-navigation").setup {
disable_when_zoomed = true,
keybindings = {
down = "<C-j>",
last_active = "<C-\\>",
left = "<C-h>",
next = "<C-Space>",
right = "<C-l>",
up = "<C-k>",
},
}