aboutsummaryrefslogtreecommitdiff
path: root/vim/config/centos.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-02 20:01:05 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-02 20:01:05 +1200
commit890815c7de274c0b4aeef26896e0c67569ff799b (patch)
tree441b6c3d7c1bb8e9661ae382bbc073aececadd3b /vim/config/centos.vim
parentMerge branch 'hotfix/v1.16.1' into develop (diff)
downloaddotfiles-890815c7de274c0b4aeef26896e0c67569ff799b.tar.gz
dotfiles-890815c7de274c0b4aeef26896e0c67569ff799b.zip
Add CentOS and Debian .vim tweaks
Diffstat (limited to 'vim/config/centos.vim')
-rw-r--r--vim/config/centos.vim29
1 files changed, 29 insertions, 0 deletions
diff --git a/vim/config/centos.vim b/vim/config/centos.vim
new file mode 100644
index 00000000..26289bf8
--- /dev/null
+++ b/vim/config/centos.vim
@@ -0,0 +1,29 @@
+" Revert settings that CentOS might have touched
+if $VIM !=# '/usr/share/vim' || !filereadable('/etc/centos-release')
+ finish
+endif
+
+" Set options back to appropriate defaults
+set history&
+if has('cmdline_info')
+ set ruler&
+endif
+if has('cscope')
+ set csprg& cst& csto& csverb&
+ silent! cs kill
+endif
+if has('gui')
+ set guicursor&
+endif
+if has('viminfo')
+ set viminfo&
+endif
+
+" Restore terminal settings to reflect terminfo
+set t_Co& t_Sf& t_Sb&
+
+" Delete autocmd groups
+augroup redhat
+ autocmd!
+augroup END
+augroup! redhat