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
|
### Custom
|
||||||
- [ ] Oil
|
- [ ] Oil
|
||||||
- Shortcut `<leader>-` should open 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
|
### Themes
|
||||||
- [ ] Catppuccin Theme
|
- [ ] Catppuccin Theme
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
--FIX: fix/postmerge-20260701: make sure this configuration applies to upstreams version of mini
|
||||||
return {
|
return {
|
||||||
'nvim-mini/mini.nvim',
|
'nvim-mini/mini.nvim',
|
||||||
config = function()
|
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' }
|
vim.pack.add { 'https://github.com/stevearc/oil.nvim' }
|
||||||
require('oil').setup {
|
require('oil').setup {
|
||||||
vim.keymap.set('n', '-', '<CMD>Oil<CR>', { desc = 'Open parent directory' }),
|
vim.keymap.set('n', '-', '<CMD>Oil<CR>', { desc = 'Open parent directory' }),
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1 @@
|
||||||
return {
|
vim.pack.add { 'https://github.com/christoomey/vim-tmux-navigator' }
|
||||||
'christoomey/vim-tmux-navigator',
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue