blob: 19c88331b0235001a6fae8d9d8dedbd3426375a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
set number
set ruler
set ignorecase
set hlsearch "highlighted gesuchte wörter
set incsearch
set magic
set showmatch
set autoindent "auto einrücken
set scrolloff=4 "scrollt schon 4 Zeilen vor Ende
set matchpairs=(:),{:},[:],<:>
syntax enable
set encoding=utf8
"map! jj <ESC>
command W w
command Q q
command WQ wq
command Wq wq
|