autoindent and stuff in vim

This commit is contained in:
xfnw 2020-07-31 02:14:56 +00:00
parent fdd4864a3c
commit b6928fe29a

15
.vimrc
View file

@ -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)