X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/e9798ff294de57a0dd98d6cb8d6d57bdcc190aa3..83d82eccb79572cadae4315d5284254ccd5b791e:/nvim/lua/plugins/nvim-treesitter.lua diff --git a/nvim/lua/plugins/nvim-treesitter.lua b/nvim/lua/plugins/nvim-treesitter.lua new file mode 100644 index 0000000..8b87f09 --- /dev/null +++ b/nvim/lua/plugins/nvim-treesitter.lua @@ -0,0 +1,23 @@ +return { + -- add more treesitter parsers + { + "nvim-treesitter/nvim-treesitter", + opts = { + -- overwrites the settings from LazyVim + ensure_installed = { + "bash", + "c", + "html", + "json", + "lua", + "markdown", + "markdown_inline", + "python", + "regex", + "vim", + "vimdoc", + "yaml", + }, + }, + }, +}