summaryrefslogtreecommitdiff
path: root/etc/vimrc
blob: de6745dc8ad8f1405d37c49f3617247e50002710 (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
38
39
40
41
42
43
44
45
46
"" vim:ft=vim

set nocompatible
set number
set title
set ttyfast
set ruler

" Tabbing (mainly)
set tabstop=5
set shiftwidth=5
set shiftround
set autoindent
set smartindent
inoremap # X#
set list
set listchars=tab:»·,trail:·,extends:…,precedes:…,nbsp:␠

" Folding
set foldmethod=marker

" Colors
set bg=dark
colorscheme mine
syntax enable
set t_Co=256

" Swapfiles
set backupdir=~/.vim-backup
set dir=~/.vim-backup

" Searching
set smartcase
set ignorecase
set hlsearch
set incsearch
set redrawtime=500

" 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