diff options
Diffstat (limited to '')
-rw-r--r-- | ftdetect/polyglot.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 8197de6d..0bef8008 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -395,7 +395,7 @@ augroup filetypedetect " i3:PotatoesMaster/i3-vim-syntax augroup i3_ftdetect au! - au BufRead,BufNewFile *i3/config set ft=i3 + au BufRead,BufNewFile *i3/config,*sway/config set ft=i3 augroup END augroup END @@ -439,6 +439,7 @@ augroup filetypedetect autocmd BufNewFile,BufRead *.json setlocal filetype=json autocmd BufNewFile,BufRead *.jsonp setlocal filetype=json autocmd BufNewFile,BufRead *.geojson setlocal filetype=json +autocmd BufNewFile,BufRead *.template setlocal filetype=json augroup END augroup filetypedetect |