aboutsummaryrefslogtreecommitdiff
path: root/files/.vim/ftplugin/yaml.vim
diff options
context:
space:
mode:
authorAnton Bobov <abobov@gmail.com>2013-10-10 22:55:51 +0600
committerAnton Bobov <abobov@gmail.com>2013-10-10 22:55:51 +0600
commit9356a267f4ff70ed2c41996a248f1ca90552bd89 (patch)
tree81692c3e25b01cc877b6827bfb76caf79043806e /files/.vim/ftplugin/yaml.vim
parent758071194a0adf8a6ec2e83130f8677d7ca7b70c (diff)
parenta909de07c5f982968cb8cd0f2101ac052f4a0034 (diff)
Merge branch 'master' of github.com:abobov/dotfiles
Conflicts: .gitmodules
Diffstat (limited to 'files/.vim/ftplugin/yaml.vim')
-rwxr-xr-xfiles/.vim/ftplugin/yaml.vim32
1 files changed, 0 insertions, 32 deletions
diff --git a/files/.vim/ftplugin/yaml.vim b/files/.vim/ftplugin/yaml.vim
deleted file mode 100755
index ca3abe2..0000000
--- a/files/.vim/ftplugin/yaml.vim
+++ /dev/null
@@ -1,32 +0,0 @@
-" Vim indent file
-" Language: Yaml
-" Author: Ian Young
-" Get it bundled for pathogen: https://github.com/avakhov/vim-yaml
-
-if exists("b:did_indent")
- finish
-endif
-"runtime! indent/ruby.vim
-"unlet! b:did_indent
-let b:did_indent = 1
-
-setlocal autoindent sw=2 et
-setlocal indentexpr=GetYamlIndent()
-setlocal indentkeys=o,O,*<Return>,!^F
-
-function! GetYamlIndent()
- let lnum = v:lnum - 1
- if lnum == 0
- return 0
- endif
- let line = substitute(getline(lnum),'\s\+$','','')
- let indent = indent(lnum)
- let increase = indent + &sw
- if line =~ ':$'
- return increase
- else
- return indent
- endif
-endfunction
-
-" vim:set sw=2: