aboutsummaryrefslogtreecommitdiffstats
path: root/.vimrc
blob: a571715e05f12124bbd386d813208c073de4c95a (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
syntax on
filetype plugin on
"set omnifunc=syntaxcomplete#Complete
set autoindent

"colours!
colorscheme anotherdark
set background=dark

"enable status-line
set laststatus=2

"allow edited background buffers
set hidden

"buffer controls to match pentadactyl
noremap <C-n> <Esc>:bn<CR>
noremap <C-p> <Esc>:bp<CR>
noremap <C-t> <Esc>:badd<Space>
noremap <C-g> <Esc>:buffers<CR>:b<Space>

"insert lines above and below with (=|+)
"very hackish, but i couldn't think of a better way
nnoremap = Oa<C-u><Esc>j
nnoremap + oa<C-u><Esc>k

"folds!
nnoremap fo zO
nnoremap fc zC
nnoremap fm zM
nnoremap fr zR

"copy words from above and below the cursor
inoremap <expr> <C-y> pumvisible() ? "\<C-y>" : matchstr(getline(line('.')-1), '\%' . virtcol('.') . 'v\%(\k\+\\|.\)')
inoremap <expr> <C-e> pumvisible() ? "\<C-e>" : matchstr(getline(line('.')+1), '\%' . virtcol('.') . 'v\%(\k\+\\|.\)')

"use the X clipboard for things when running in a virtual terminal, because yes
if &term != "linux"
	nnoremap <expr> y (v:register ==# '"' ? '"+' : '') . 'y'
	nnoremap <expr> Y (v:register ==# '"' ? '"+' : '') . 'Y'
	xnoremap <expr> y (v:register ==# '"' ? '"+' : '') . 'y'
	xnoremap <expr> Y (v:register ==# '"' ? '"+' : '') . 'Y'
	
	nnoremap <expr> d (v:register ==# '"' ? '"+' : '') . 'd'
	nnoremap <expr> D (v:register ==# '"' ? '"+' : '') . 'D'
	xnoremap <expr> d (v:register ==# '"' ? '"+' : '') . 'd'
	xnoremap <expr> D (v:register ==# '"' ? '"+' : '') . 'D'
	
	nnoremap <expr> p (v:register ==# '"' ? '"+' : '') . 'p'
	nnoremap <expr> P (v:register ==# '"' ? '"+' : '') . 'P'
	xnoremap <expr> p (v:register ==# '"' ? '"+' : '') . 'p'
	xnoremap <expr> P (v:register ==# '"' ? '"+' : '') . 'P'
end

"annoying syntax-related values that need to be set before files are
"opened
let g:c_no_comment_fold = 1
let g:c_no_if0_fold = 1

"other filetype-specific settings. i can't figure out how to stick all
"the FileTypes in one list (mostly because i have no idea what i'm
"doing with viml), so separate lines it is.
autocmd FileType asm     call Settings_asm()
autocmd FileType c       call Settings_c()
autocmd FileType cpp     call Settings_c()
autocmd FileType haskell call Settings_haskell()
autocmd FileType make    call Settings_script()
autocmd FileType perl    call Settings_script()
autocmd FileType sh      call Settings_script()
autocmd FileType vim     call Settings_vim()

function! Settings_asm()
	setlocal cindent
	set foldmethod=syntax
	noremap -- A<Tab>;<Space>
endfunction

function! Settings_c()
	setlocal cindent
	set foldmethod=syntax
	noremap -- A<Space>/*<Space><Space>*/<Esc>hhi
endfunction

function! Settings_haskell()
	setlocal smartindent
	noremap -- A<Space>--<Space>
endfunction

function! Settings_script()
	setlocal smartindent
	noremap -- A<Space>#<Space>
endfunction

function! Settings_vim()
	setlocal smartindent
	noremap -- A<Space>"
endfunction