From 941e573e22d1c4b01e05b8cacc7a317bfb8eeaf8 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Fri, 6 Dec 2024 21:49:13 +0100 Subject: Experimental neovim configuration with lua Currently, using the neovim appimage, nvimserver cannot be installed --- nvim/lua/plugins/treesitter.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 nvim/lua/plugins/treesitter.lua (limited to 'nvim/lua/plugins/treesitter.lua') 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 +} -- cgit v1.2.1