Adding Changes

This commit is contained in:
Carlos
2025-02-02 12:26:38 -05:00
parent dbd430eac2
commit 93eb0ef78a
17 changed files with 536 additions and 22 deletions

View File

@@ -13,6 +13,10 @@ return {
treesitter.setup({ -- enable syntax highlighting
highlight = {
enable = true,
disable = function(lang, buf)
-- Prevent Treesitter from parsing Copilot files
return lang == "copilot" or vim.api.nvim_buf_get_name(buf):match("copilot.lua")
end,
},
-- enable indentation
indent = { enable = true },