blob: b6c15c3c34529570d98be839ab99a5730d9d4b28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
"" vim:ft=vim
set nocompatible
set number
set title
set ttyfast
" 5 spaces per tab
set tabstop=5
set shiftwidth=5
set shiftround
set autoindent
set bg=dark
colorscheme darkblue
syntax enable
set t_Co=256
" Show Tabs as »····
set list
set listchars=tab:»·
" Only create .swp-files in ~/.vim-backup
set backupdir=~/.vim-backup
set dir=~/.vim-backup
" Ignore case in searches
set ignorecase
" Greedy remaps (TODO: Add more keys)
noremap - :
noremap r h
noremap n j
noremap t k
noremap h l
noremap c n
noremap f p
|