Thanks for sharing your configuration. I just enjoyed your My Forever Dev Workflow video. Great stuff!
I just want to call out that I think you can eliminate these lines from your configuration
|
vim.keymap.set("n", "<C-h>", "<Cmd>NvimTmuxNavigateLeft<CR>", {}) |
|
vim.keymap.set("n", "<C-j>", "<Cmd>NvimTmuxNavigateDown<CR>", {}) |
|
vim.keymap.set("n", "<C-k>", "<Cmd>NvimTmuxNavigateUp<CR>", {}) |
|
vim.keymap.set("n", "<C-l>", "<Cmd>NvimTmuxNavigateRight<CR>", {}) |
since these are the default mappings provided by the plugin (see christoomey/vim-tmux-navigator README.md Usage section)
Thanks again!