My vim configuration
git clone https://github.com/m-col/vim-misc
Files | Refs | Readme

Commit f4818c1c4789abac550fec5965bf508256b41409
Parent: 64ce2ae7bfd5a41a32f9ad9f95fa728647b310be
Author: mcol <mcol@posteo.net>
Date: 2018-12-17 11:28:37 +0000
Committer: mcol <mcol@posteo.net>
Committed: 2018-12-17 11:28:37 +0000

removed auto pairs

vimrc Modified

@@ -24,7 +24,6 @@
 Plugin 'mcolligan/vimlab'	    " vimlab
 Plugin 'mcolligan/tide'		    " tmux ide
 Plugin 'mcolligan/argtextobj.vim'   " function argument text object
-"Plugin 'jpalardy/vim-slime'	    " send text to IDE and execute
 Plugin 'christoomey/vim-tmux-navigator'	    " navigate vim and tmux splits seamlessly
 
 call vundle#end()            " required
@@ -43,8 +42,8 @@
 "------------------------------------------------------------------"
 
 set autoread			" update when file is modified outside of vim
+set autowrite			" update file when changing buffers, opening new files, etc
 au BufLeave * :silent! update	" save automatically when leaving buffer
-"set hidden			" allow opening new buffers without saving first
 set lazyredraw			" dont update screen during macros/scripts
 set hlsearch			" Highlight all search results - toggled by <Leader>h
 set smartcase			" searches ignore case only if all lower case