diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-26 12:48:01 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-26 12:48:01 +0200 |
commit | 2b1938816662934441e86b8891db8368f1bdf37d (patch) | |
tree | 01e952339c5aab7e03fcd374112f846aa04150c5 /ftdetect | |
parent | a531f6b1045971aee4cffb9a7178c17f9349f439 (diff) | |
download | vim-polyglot-2b1938816662934441e86b8891db8368f1bdf37d.tar.gz vim-polyglot-2b1938816662934441e86b8891db8368f1bdf37d.zip |
Add dockerfile syntax support
Diffstat (limited to '')
-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 3c2604c0..dc3b2e8f 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -12,6 +12,7 @@ endfunction autocmd BufNewFile,BufRead * call s:DetectCoffee() au BufRead,BufNewFile *.csv,*.dat,*.tsv,*.tab set filetype=csv autocmd BufNewFile,BufReadPost *.feature,*.story set filetype=cucumber +au BufNewFile,BufRead Dockerfile set filetype=dockerfile au BufRead,BufNewFile *.ex,*.exs set filetype=elixir au FileType elixir setl sw=2 sts=2 et iskeyword+=!,? autocmd BufNewFile,BufRead *.git/{,modules/**/}{COMMIT_EDIT,MERGE_}MSG set ft=gitcommit |