diff --git a/lua/plugins.lua b/lua/plugins.lua index 7d4892a..e4a874b 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -77,12 +77,23 @@ return { config = function() require('nvim-treesitter.configs').setup({ highlight = { enable = true }, + indent = { enable = true }, }) vim.opt.foldmethod = "expr" vim.opt.foldexpr = "nvim_treesitter#foldexpr()" end }, + { + 'nvim-treesitter/nvim-treesitter', + config = function () + require('treesitter-context').setup({ + multiwindow = true, + min_window_height = 10, + }) + end + }, + { "nvim-neo-tree/neo-tree.nvim", branch = "v3.x",