diff options
author | Mike Beattie <mike@ethernal.org> | 2019-02-09 21:28:05 +1300 |
---|---|---|
committer | Mike Beattie <mike@ethernal.org> | 2019-02-09 21:28:05 +1300 |
commit | 944006b03a17c0b40a88f99b625238fc4db3d50f (patch) | |
tree | 0bba5306376acfd27edfba3c56e6d89df08d469c | |
parent | e486cec399b3fc1147928b7c7e9dadc230fc6742 (diff) |
VIM: turn of indent plugin, hlsearch
Signed-off-by: Mike Beattie <mike@ethernal.org>
-rw-r--r-- | .vimrc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -34,9 +34,9 @@ endif " Uncomment the following to have Vim load indentation rules and plugins " according to the detected filetype. -if has("autocmd") - filetype plugin indent on -endif +"if has("autocmd") +" filetype plugin indent on +"endif " The following are commented out as they cause vim to behave a lot " differently from regular Vi. They are highly recommended though. @@ -45,7 +45,7 @@ endif "set ignorecase " Do case insensitive matching "set smartcase " Do smart case matching set incsearch " Incremental search -set hlsearch " Highlight search results +"set hlsearch " Highlight search results "set autowrite " Automatically save before commands like :next and :make "set hidden " Hide buffers when they are abandoned "set mouse=a " Enable mouse usage (all modes) |