configure vimtmuxnavigator with vim pack
This commit is contained in:
parent
79901a1270
commit
5e4274bb82
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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' }),
|
||||
|
|
|
|||
|
|
@ -1,3 +1 @@
|
|||
return {
|
||||
'christoomey/vim-tmux-navigator',
|
||||
}
|
||||
vim.pack.add { 'https://github.com/christoomey/vim-tmux-navigator' }
|
||||
|
|
|
|||
Loading…
Reference in New Issue