From b6928fe29a0849fa5afd8f4d74ae174266bd9ab0 Mon Sep 17 00:00:00 2001 From: xfnw Date: Fri, 31 Jul 2020 02:14:56 +0000 Subject: [PATCH] autoindent and stuff in vim --- .vimrc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.vimrc b/.vimrc index a04fd73..d9e512e 100644 --- a/.vimrc +++ b/.vimrc @@ -25,3 +25,18 @@ syntax on color pablo +" vimrc sane defaults + +filetype plugin indent on +set showcmd " Show (partial) command in status line. +set showmatch " Show matching brackets. +set ignorecase " Do case insensitive matching +set smartcase " Do smart case matching +set incsearch " Incremental search +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) + + + +