25 lines
610 B
VimL
25 lines
610 B
VimL
|
|
" Base options
|
|
set showcmd " Show (partial) command in status line.
|
|
set showmatch " Show matching brackets.
|
|
set incsearch " Incremental search
|
|
set autowrite " Automatically save before commands like :next and :make
|
|
set ttymouse= " Disable mouse tty
|
|
set mouse= " Disable mouse for good
|
|
|
|
" Color support
|
|
syntax on
|
|
set background=dark
|
|
set nu
|
|
|
|
" Enable indentation rules per files
|
|
filetype plugin indent on
|
|
|
|
" Vim sane tabs
|
|
set tabstop=2
|
|
set shiftwidth=2
|
|
set softtabstop=2
|
|
set expandtab
|
|
set backspace=indent,eol,start " Proper backspace behavior.
|
|
|