nvim: recognize git & ssh configs within the dotfiles tree

This commit is contained in:
Fernando Schauenburg 2023-02-28 22:43:50 +01:00
parent f131f81c51
commit 75d637ac04

View file

@ -1,6 +1,8 @@
vim.filetype.add {
pattern = {
['${HOME}/.ssh/config.d/.*'] = 'sshconfig',
['.*/ssh/config'] = 'sshconfig',
['.*/git/config'] = 'gitconfig',
}
}