summaryrefslogtreecommitdiff
path: root/etc/vimrc
blob: 34f001f210802ec502b943d4d7ceda77a4f68376 (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:»·,trail:·,extends:…

" Only create .swp-files in ~/.vim-backup
set backupdir=~/.vim-backup
set dir=~/.vim-backup

" Ignore case in searches
set smartcase

" 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