diff options
Diffstat (limited to 'runtime/indent/zsh.vim')
-rw-r--r-- | runtime/indent/zsh.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/runtime/indent/zsh.vim b/runtime/indent/zsh.vim new file mode 100644 index 0000000..8e30c65 --- /dev/null +++ b/runtime/indent/zsh.vim @@ -0,0 +1,14 @@ +" Vim indent file +" Language: Zsh shell script +" Maintainer: Christian Brabandt <cb@256bit.org> +" Previous Maintainer: Nikolai Weibull <now@bitwi.se> +" Latest Revision: 2015-05-29 +" License: Vim (see :h license) +" Repository: https://github.com/chrisbra/vim-zsh + +if exists("b:did_indent") + finish +endif + +" Same as sh indenting for now. +runtime! indent/sh.vim |