diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2014-08-13 00:17:05 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2014-08-13 00:17:51 +0200 |
commit | c0560d6199fe261dfd1aca6310558dc82f759fe3 (patch) | |
tree | 6d4595619983733f28d3567bc07b92c38bd76e89 /ftdetect | |
parent | 15db2d71206d1c67e80d2710577144e05e03b283 (diff) | |
download | vim-polyglot-c0560d6199fe261dfd1aca6310558dc82f759fe3.tar.gz vim-polyglot-c0560d6199fe261dfd1aca6310558dc82f759fe3.zip |
Add swift support :smile:, closes #32
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 26103a5a..edfca72e 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -161,6 +161,7 @@ au BufRead,BufNewFile * call s:DetectScala() autocmd BufNewFile,BufRead *.slim set filetype=slim autocmd BufNewFile,BufReadPost *.styl set filetype=stylus autocmd BufNewFile,BufReadPost *.stylus set filetype=stylus +autocmd BufNewFile,BufRead *.swift set filetype=swift au BufNewFile,BufRead *.automount set filetype=systemd au BufNewFile,BufRead *.mount set filetype=systemd au BufNewFile,BufRead *.path set filetype=systemd |