blob: 64b510e5e2f67c55770c26c80821a2d360f6b5d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
" roff settings very cool!
function Roffsetup()
set wrap
set spell
set spelllang=en_gb
nnoremap j gj
nnoremap k gk
nnoremap k gk
syntax match roffmac /^\..*$/
highlight link roffmac Title
endfunction
|