From c5c995f4eafb4831fdc4244bc088a3ae46f9f822 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Thu, 16 May 2024 06:31:07 -0600 Subject: [PATCH] Treesitter for everything --- nvim/lua/plugins/treesitter.lua | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua index 3ce186c..1a92cd0 100644 --- a/nvim/lua/plugins/treesitter.lua +++ b/nvim/lua/plugins/treesitter.lua @@ -1,23 +1,7 @@ local function configure() require("nvim-treesitter.configs").setup({ -- A list of parser names, or "all" - ensure_installed = { - "bash", - "c_sharp", - "javascript", - "jq", - "json", - "latex", - "lua", - "markdown", - "markdown_inline", - "python", - "rust", - "toml", - "vim", - "vimdoc", - "yaml", - }, + ensure_installed = "all", highlight = { enable = true, }, @@ -28,4 +12,7 @@ return { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate", config = configure, + dependencies = { + { "nushell/tree-sitter-nu" }, + }, }