6 lines
178 B
Lua
6 lines
178 B
Lua
vim.cmd([[
|
|
augroup filetypedetect
|
|
autocmd! BufRead,BufNewFile .swcrc setfiletype json
|
|
autocmd! BufRead,BufNewFile .prettierrc setfiletype json
|
|
augroup END
|
|
]])
|