aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect/zsh.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-06 18:04:42 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-06 18:04:42 +1200
commit01fd7b30cfcf77982c1b6fa9ba030424173dd744 (patch)
treebb70b743e029fa151247bf677510665998dfecf5 /vim/ftdetect/zsh.vim
parentMerge branch 'hotfix/v0.47.3' (diff)
parentRebuild dotfiles(7) manual page (diff)
downloaddotfiles-01fd7b30cfcf77982c1b6fa9ba030424173dd744.tar.gz
dotfiles-01fd7b30cfcf77982c1b6fa9ba030424173dd744.zip
Merge branch 'release/v0.48.0'v0.48.0
* release/v0.48.0: Rebuild dotfiles(7) manual page Bump VERSION Update README.md's Vim section Add custom scripts.vim Factor out password redaction into new plugin Spacing adjustments Abbreviate and invert j/gj,k/gk mappings Refactor vim/vimrc Consolidate .vimrc and .vim/filetype.vim Update markdown/autoformat.vim Correct a path in a VimL comment
Diffstat (limited to 'vim/ftdetect/zsh.vim')
-rw-r--r--vim/ftdetect/zsh.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/vim/ftdetect/zsh.vim b/vim/ftdetect/zsh.vim
deleted file mode 100644
index 08556361..00000000
--- a/vim/ftdetect/zsh.vim
+++ /dev/null
@@ -1,9 +0,0 @@
-" Z shell files
-autocmd BufNewFile,BufRead
- \ *.zsh,.zprofile,zprofile,.zshrc,zshrc
- \ setfiletype zsh
-autocmd BufNewFile,BufRead
- \ *
- \ if getline(1) =~# '^#!.*\<zsh\>'
- \ | setfiletype zsh
- \ | endif