22 lines
287 B
VimL
22 lines
287 B
VimL
" Basics
|
|
syntax on
|
|
filetype indent plugin on
|
|
set background=light
|
|
set encoding=utf-8
|
|
set autowrite
|
|
set smartcase
|
|
set incsearch
|
|
set hlsearch
|
|
set nospell
|
|
|
|
" Tab behavior
|
|
set expandtab
|
|
set tabstop=4
|
|
set shiftwidth=4
|
|
set softtabstop=4
|
|
|
|
"" New window positions
|
|
set splitbelow
|
|
set splitright
|
|
|