diff --git a/README.md b/README.md index 2183eaf..e0f8136 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,6 @@ libc bash ``` -Optionally for more lsp servers. - -``` -go -npm -``` - ## General This configuration is based on the lazy plugin manager. diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 7392a0c..5cf93a9 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -2,12 +2,12 @@ return { { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate", - priority = 1000, -- Load before everything else + priority = 1000, config = function() local configs = require("nvim-treesitter.configs") configs.setup({ sync_install = true, - ensure_installed = { "typst", "go", "bash", "python", "nix" }, + ensure_installed = { "typst", "go", "bash", "python", "nix", "lua" }, highlight = { enable = true }, indent = { enable = true }, })