Improving colors/telescope ...

This commit is contained in:
2026-02-07 14:57:10 +01:00
parent b6e826eb53
commit 90c11f0aac
5 changed files with 185 additions and 23 deletions

View File

@ -49,3 +49,9 @@ vim.api.nvim_create_autocmd({ "BufNewFile", "BufRead" }, {
vim.bo.filetype = "c"
end,
})
vim.api.nvim_create_autocmd({ "BufNewFile", "BufRead" }, {
pattern = "*.pl",
callback = function()
vim.bo.filetype = "prolog"
end,
})