diff options
author | Camil Staps | 2019-04-01 09:04:16 +0200 |
---|---|---|
committer | Camil Staps | 2019-04-01 09:04:16 +0200 |
commit | d458355db1d27f2751d4864b161aa2e532fd630e (patch) | |
tree | a15233bebea66b9bd29f86d651f91df7f2892366 /vim/.vim/after | |
parent | Add scripts for display port dual monitor (diff) |
Minor updates to vimrc
Diffstat (limited to 'vim/.vim/after')
-rw-r--r-- | vim/.vim/after/ftplugin/clean.vim | 2 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/ruby.vim | 4 | ||||
-rw-r--r-- | vim/.vim/after/ftplugin/wast.vim | 4 |
3 files changed, 9 insertions, 1 deletions
diff --git a/vim/.vim/after/ftplugin/clean.vim b/vim/.vim/after/ftplugin/clean.vim index 17b62f6..10de6e1 100644 --- a/vim/.vim/after/ftplugin/clean.vim +++ b/vim/.vim/after/ftplugin/clean.vim @@ -1,5 +1,5 @@ setlocal autoindent setlocal foldmethod=manual -setlocal tags+=/opt/clean/lib/tags setlocal tags+=./tags;/ +setlocal tags+=/opt/clean/lib/tags setlocal laststatus=2 diff --git a/vim/.vim/after/ftplugin/ruby.vim b/vim/.vim/after/ftplugin/ruby.vim new file mode 100644 index 0000000..50637fd --- /dev/null +++ b/vim/.vim/after/ftplugin/ruby.vim @@ -0,0 +1,4 @@ +" GitLab development preferences +setlocal expandtab +setlocal shiftwidth=2 +setlocal tabstop=2 diff --git a/vim/.vim/after/ftplugin/wast.vim b/vim/.vim/after/ftplugin/wast.vim new file mode 100644 index 0000000..2afa8e4 --- /dev/null +++ b/vim/.vim/after/ftplugin/wast.vim @@ -0,0 +1,4 @@ +setlocal tabstop=2 +setlocal shiftwidth=2 +setlocal indentexpr=autoindent +setlocal autoindent |