adsk changes

This commit is contained in:
Hunter Haugen 2025-03-03 15:51:57 -08:00
parent 58b854c089
commit 5b02259b30
Signed by: hunner
GPG key ID: EF99694AA599DDAD
12 changed files with 61 additions and 15 deletions

View file

@ -207,3 +207,11 @@ table.insert(lvim.builtin.cmp.sources, 1, { name = "copilot" })
-- require("nvim-treesitter.highlight").attach(0, "bash")
-- end,
-- })
vim.api.nvim_create_autocmd("FileType", {
pattern = { "Jenkinsfile" },
callback = function()
require("nvim-treesitter.highlight").attach(0, "groovy")
command = "set ft=groovy"
end,
})