-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
32 lines (25 loc) · 701 Bytes
/
.vimrc
File metadata and controls
32 lines (25 loc) · 701 Bytes
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
syntax on
filetype plugin indent on
set nocompatible
set incsearch
set showmode
set modeline
set scrolloff=8
set noerrorbells
set visualbell
set shiftwidth=4
set tabstop=4 " tabs are 4 spaces
set expandtab " use spaces when tab
set backspace=2
set encoding=utf-8
set statusline=%1*[%02n]%*\ %2*%F%*\ %(\ %M%R%H)%)%=%3*Pos=<%l,%c%V>%*
hi Comment ctermfg=Grey guifg=Grey
" mutt mail colours
hi mailHeader ctermfg=brown
hi mailSignature ctermfg=darkblue
hi mailQuoted1 ctermfg=darkgreen
hi mailQuoted2 ctermfg=darkcyan
hi mailQuoted3 ctermfg=darkgreen
hi mailQuoted4 ctermfg=darkcyan
hi mailQuoted5 ctermfg=darkgreen
hi mailQuoted6 ctermfg=darkcyan