From 84de4d9117dfaafb22a529bfa133d95abf87180e Mon Sep 17 00:00:00 2001 From: Xevion Date: Fri, 3 Nov 2023 13:50:38 -0700 Subject: [PATCH] Reformat, latest treesitter config --- plugins/treesitter.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/treesitter.lua b/plugins/treesitter.lua index c69606c..21f0646 100644 --- a/plugins/treesitter.lua +++ b/plugins/treesitter.lua @@ -1,12 +1,12 @@ return { "nvim-treesitter/nvim-treesitter", opts = function(_, opts) - -- add more things to the ensure_installed table protecting against community packs modifying it - opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, { - "lua", "typescript", "rust", "javascript", "vim", "markdown", "html", "css", "java", "c_sharp", "cpp", "diff", "c", "bash", - "astro", "cmake", "clojure", "elm", "elixir", "erlang", "gdscript", "graphql", "http", "json", "json5", "kotlin", "luadoc", - "make", "nix", "ocaml", "passwd", "prisma", "python", "proto", "r", "regex", "ruby", "scala", "scss", "svelte", "sql", - "terraform", "toml", "tsx", "vue", "xml", "yaml", "zig", "javascript" + --add more things to the ensure_installed table protecting against community packs modifying it +opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, { + "lua", "typescript", "rust", "javascript", "vim", "markdown", "html", "css", "java", "c_sharp", "cpp", "diff", "c", "bash", + "astro", "cmake", "clojure", "elm", "elixir", "erlang", "gdscript", "graphql", "http", "json", "json5", "kotlin", "luadoc", + "make", "nix", "ocaml", "passwd", "prisma", "python", "proto", "r", "regex", "ruby", "scala", "scss", "svelte", "sql", + "terraform", "toml", "tsx", "vue", "xml", "yaml", "zig", "javascript" }) - end, +end, }