diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 2c178285..47ccad7a 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -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 = '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', }