summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
authorSam Nystrom <sam@samnystrom.dev>2023-07-05 21:26:02 -0400
committerSam Nystrom <sam@samnystrom.dev>2023-07-05 21:26:02 -0400
commite5c8f244466ff4da4b12c1bbfd2292a8408ff1d2 (patch)
tree978e99f5e9fdb7877a15ebe54eaa6d06dee71a92 /.config/nvim/lua/plugins/treesitter.lua
parent22f001c91a158c1bc576a74ecae5a33402f83ab8 (diff)
Add Neovim config
Diffstat (limited to '.config/nvim/lua/plugins/treesitter.lua')
-rw-r--r--.config/nvim/lua/plugins/treesitter.lua33
1 files changed, 33 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua
new file mode 100644
index 0000000..ba45ada
--- /dev/null
+++ b/.config/nvim/lua/plugins/treesitter.lua
@@ -0,0 +1,33 @@
+return {
+ {
+ "nvim-treesitter/nvim-treesitter",
+ dependencies = { "nvim-treesitter/nvim-treesitter-textobjects" },
+ event = { "BufReadPre", "BufNewFile" },
+ config = function()
+ require("nvim-treesitter.configs").setup({
+ auto_install = true,
+ ensure_installed = {
+ "lua",
+ "python",
+ "rust",
+ "bash",
+ "regex",
+ "json",
+ "toml",
+ "yaml",
+ "ini",
+ "markdown",
+ "html",
+ "css",
+ "javascript",
+ "typescript",
+ "tsx",
+ "scss",
+ "clojure",
+ "sql",
+ },
+ highlight = { enable = true },
+ })
+ end,
+ },
+}