working nvf!

This commit is contained in:
Vali 2024-07-06 17:14:45 +02:00
commit d26fdccf7a
53 changed files with 330 additions and 172 deletions

View file

@ -0,0 +1,8 @@
-- luacheck: ignore
vim.api.nvim_create_autocmd({ 'BufNewFile', 'BufRead' }, {
pattern = 'gitconfig*,.gitconfig*',
callback = function()
vim.bo.filetype = 'gitconfig'
end,
once = false,
})