Files
dotfiles/.config/nvim/lua/treesitter.lua
2025-12-14 18:39:59 +01:00

9 lines
165 B
Lua

local ok, treesitter = pcall(require, "nvim-treesitter")
if not ok then
print("ERROR: treesitter couldn't be loaded")
return
end
treesitter.install { 'lua' }