diff options
author | Minijackson <minijackson@riseup.net> | 2022-12-16 13:52:43 +0100 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2022-12-16 13:52:43 +0100 |
commit | 2a467837c8f2f0fd5bda8212eaffb9f3f2c6eee4 (patch) | |
tree | 9f071620749ce02597f64ed9eeb13b424ddf78bc /dotfiles | |
parent | 8259bc0e1636e01222a5727bb73417c01534ea54 (diff) | |
download | nixos-config-reborn-2a467837c8f2f0fd5bda8212eaffb9f3f2c6eee4.tar.gz nixos-config-reborn-2a467837c8f2f0fd5bda8212eaffb9f3f2c6eee4.zip |
vim: fix treesitter parser install dir
Diffstat (limited to 'dotfiles')
-rw-r--r-- | dotfiles/vim.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/vim.lua b/dotfiles/vim.lua index 2c650b7..9ebb70c 100644 --- a/dotfiles/vim.lua +++ b/dotfiles/vim.lua | |||
@@ -173,7 +173,7 @@ require("gitsigns").setup { | |||
173 | -- Treesitter | 173 | -- Treesitter |
174 | 174 | ||
175 | require("nvim-treesitter.configs").setup { | 175 | require("nvim-treesitter.configs").setup { |
176 | parser_install_dir = vim.fn.stdpath("data") .. "/site/parser/", | 176 | parser_install_dir = vim.fn.stdpath("data") .. "/site", |
177 | highlight = { | 177 | highlight = { |
178 | enable = true, | 178 | enable = true, |
179 | }, | 179 | }, |