summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
authorJohannes Ranke <johannes.ranke@jrwb.de>2024-12-06 21:49:13 +0100
committerJohannes Ranke <johannes.ranke@jrwb.de>2024-12-06 21:50:27 +0100
commit941e573e22d1c4b01e05b8cacc7a317bfb8eeaf8 (patch)
tree7f325a21f22664460fa18ebee4b8bd782d3b3b7a /nvim/lua/plugins/treesitter.lua
parent41103239de9942a1cd269d4e88d15128761d32d9 (diff)
Experimental neovim configuration with lua
Currently, using the neovim appimage, nvimserver cannot be installed
Diffstat (limited to 'nvim/lua/plugins/treesitter.lua')
-rw-r--r--nvim/lua/plugins/treesitter.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua
new file mode 100644
index 0000000..07c4586
--- /dev/null
+++ b/nvim/lua/plugins/treesitter.lua
@@ -0,0 +1,10 @@
+return {
+ "nvim-treesitter/nvim-treesitter",
+ run = ":TSUpdate",
+ config = function ()
+ require("nvim-treesitter.configs").setup({
+ ensure_installed = { "markdown", "markdown_inline", "r", "rnoweb", "yaml", "csv" },
+ highlight = { enable = true },
+ })
+ end
+}

Contact - Imprint