Initial commit

This commit is contained in:
2026-03-22 18:04:35 +01:00
commit 1d5ca0aa29
74 changed files with 2537 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
return {
'alexghergh/nvim-tmux-navigation',
config = function()
require 'nvim-tmux-navigation'.setup {
disable_when_zoomed = false, -- defaults to false
keybindings = {
left = "<C-h>",
down = "<C-j>",
up = "<C-k>",
right = "<C-l>",
last_active = "<C-\\>",
}
}
end
}