Add some plugins

This commit is contained in:
Simo Soini 2025-06-12 11:04:45 +03:00
parent bda928c413
commit 6e17425c2c
1 changed files with 25 additions and 3 deletions

View File

@ -9,6 +9,31 @@ return {
-- TS Autotag for html auto tag close
'windwp/nvim-ts-autotag',
-- Better jinja2 support
'HiPhish/jinja.vim',
-- Navigation integration for tmux
'christoomey/vim-tmux-navigator',
-- More convenient way to use terminal from neovim
{
'akinsho/toggleterm.nvim',
config = function()
require('toggleterm').setup {
size = function(term)
if term.direction == 'horizontal' then
return 15
elseif term.direction == 'vertical' then
return vim.o.columns * 0.4
end
end,
open_mapping = '<leader>tt',
direction = 'float',
shell = '/usr/bin/fish',
}
end,
},
-- Harpoon for fast navigation within a project
{
'theprimeagen/harpoon',
@ -76,9 +101,6 @@ return {
-- INFO: Previously used, now disabled plugins
-- Navigation integration for tmux
-- 'christoomey/vim-tmux-navigator',
-- Github copilot
-- 'github/copilot.vim',
}