2019-06-18 16:06:06 +02:00
|
|
|
" Basics
|
|
|
|
syntax on
|
|
|
|
filetype indent plugin on
|
|
|
|
set background=light
|
|
|
|
set encoding=utf-8
|
|
|
|
set smartcase
|
|
|
|
set incsearch
|
|
|
|
set hlsearch
|
|
|
|
set nospell
|
2020-02-04 02:05:33 +01:00
|
|
|
set hidden
|
2019-06-18 16:06:06 +02:00
|
|
|
|
|
|
|
" Tab behavior
|
|
|
|
set expandtab
|
|
|
|
set tabstop=4
|
|
|
|
set shiftwidth=4
|
|
|
|
set softtabstop=4
|
|
|
|
|
2019-08-14 22:05:24 +02:00
|
|
|
" New window positions
|
2019-06-18 16:06:06 +02:00
|
|
|
set splitbelow
|
|
|
|
set splitright
|
|
|
|
|
2019-06-22 19:27:02 +02:00
|
|
|
" Statusbar
|
|
|
|
set statusline=%F%m%r%h%w[%L][%{&ff}]%y[%p%%][%04l,%04v]
|
2019-07-25 09:51:54 +02:00
|
|
|
|
|
|
|
" Window Management
|
|
|
|
let &winheight = &lines * 7 / 10
|
2019-08-14 22:05:24 +02:00
|
|
|
|
|
|
|
" Path
|
|
|
|
set path+=**
|
|
|
|
set wildmenu
|