1 parent 6e65b0a commit aac263fCopy full SHA for aac263f
1 file changed
.config/nvim/plugin/filetype.lua
@@ -5,6 +5,9 @@ vim.filetype.add({ pattern = { ['.*/doc/.-%.txt'] = 'help' } })
5
-- .env files.
6
vim.filetype.add({ pattern = { ['.env.*'] = 'config' } })
7
8
+-- Git configs.
9
+vim.filetype.add({ pattern = { ['.*%.gitconfig'] = 'gitconfig' } })
10
+
11
-- Docker Compose files.
12
vim.filetype.add({
13
pattern = {
0 commit comments