configure vimtmuxnavigator with vim pack

This commit is contained in:
Nick Burt 2026-07-01 12:49:04 -05:00
parent 79901a1270
commit 5e4274bb82
4 changed files with 4 additions and 11 deletions

View File

@ -7,6 +7,8 @@ A manual smoketest checklist to ensure features are working:
### Custom
- [ ] Oil
- Shortcut `<leader>-` should open Oil
- [ ] VimTmuxNavigator
- Should be able to navigate between nvim and tmux panes using `<CTRL>j`, `<CTRL>k`, `<CTRL>h`, `<CTRL>l` for each respective direction
### Themes
- [ ] Catppuccin Theme

View File

@ -1,3 +1,4 @@
--FIX: fix/postmerge-20260701: make sure this configuration applies to upstreams version of mini
return {
'nvim-mini/mini.nvim',
config = function()

View File

@ -1,11 +1,3 @@
-- return {
-- 'stevearc/oil.nvim',
-- config = function()
-- require('oil').setup()
-- vim.keymap.set('n', '-', '<CMD>Oil<CR>', { desc = 'Open parent directory' })
-- end,
-- }
vim.pack.add { 'https://github.com/stevearc/oil.nvim' }
require('oil').setup {
vim.keymap.set('n', '-', '<CMD>Oil<CR>', { desc = 'Open parent directory' }),

View File

@ -1,3 +1 @@
return {
'christoomey/vim-tmux-navigator',
}
vim.pack.add { 'https://github.com/christoomey/vim-tmux-navigator' }