refactor(nvim): remove setting rtp for treesitter parser directory

This commit is contained in:
Price Hiller 2023-11-08 21:42:37 -06:00
parent f912a59015
commit 5df8610aa0
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -127,10 +127,6 @@ return {
"RRethy/nvim-treesitter-endwise",
},
config = function()
local treesitter_dir = vim.fn.stdpath("data") .. "/treesitter"
vim.opt.runtimepath:append(treesitter_dir)
require("nvim-treesitter.configs").setup({
parser_install_dir = treesitter_dir,
auto_install = true,