Skip to content

Commit

Permalink
nvim: this bind conflicts with toggleterm.
Browse files Browse the repository at this point in the history
  • Loading branch information
TechDufus committed Nov 4, 2024
1 parent 72a3f6f commit c788656
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
4 changes: 0 additions & 4 deletions roles/neovim/files/lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ return {
({ "mfussenegger/nvim-dap", dependencies = { "rcarriga/nvim-dap-ui" } }),
"leoluz/nvim-dap-go",
"sharkdp/fd",
{
"christoomey/vim-tmux-navigator",
lazy = false,
},
{
"sbdchd/neoformat",
},
Expand Down
18 changes: 18 additions & 0 deletions roles/neovim/files/lua/plugins/vim-tmux-navigator.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
return {
"christoomey/vim-tmux-navigator",
lazy = false,
cmd = {
"TmuxNavigateLeft",
"TmuxNavigateDown",
"TmuxNavigateUp",
"TmuxNavigateRight",
-- "TmuxNavigatePrevious",
},
keys = {
{ "<c-h>", "<cmd><C-U>TmuxNavigateLeft<cr>" },
{ "<c-j>", "<cmd><C-U>TmuxNavigateDown<cr>" },
{ "<c-k>", "<cmd><C-U>TmuxNavigateUp<cr>" },
{ "<c-l>", "<cmd><C-U>TmuxNavigateRight<cr>" },
-- { "<c-\\>", "<cmd><C-U>TmuxNavigatePrevious<cr>" },
},
}

0 comments on commit c788656

Please sign in to comment.