dotfiles

Configuration dotfiles
git clone git://git.wimdupont.com/dotfiles.git
Log | Files | Refs | README | LICENSE

vimrc (4631B)


      1 " All system-wide defaults are set in $VIMRUNTIME/archlinux.vim (usually just
      2 " /usr/share/vim/vimfiles/archlinux.vim) and sourced by the call to :runtime
      3 " you can find below.  If you wish to change any of those settings, you should
      4 " do it in this file (/etc/vimrc), since archlinux.vim will be overwritten
      5 " everytime an upgrade of the vim packages is performed.  It is recommended to
      6 " make changes after sourcing archlinux.vim since it alters the value of the
      7 " 'compatible' option.
      8 
      9 " This line should not be removed as it ensures that various options are
     10 " properly set to work with the Vim-related packages.
     11 runtime! archlinux.vim
     12 
     13 " If you prefer the old-style vim functionalty, add 'runtime! vimrc_example.vim'
     14 " Or better yet, read /usr/share/vim/vim80/vimrc_example.vim or the vim manual
     15 " and configure vim to your own liking!
     16 
     17 " do not load defaults if ~/.vimrc is missing
     18 "let skip_defaults_vim=1
     19 
     20 "set spell
     21 set tw=0
     22 set wrapmargin=1
     23 set nu relativenumber
     24 set hlsearch
     25 set ic
     26 
     27 let t:is_transparent = 1
     28 let t:is_book = 0
     29 let g:netrw_winsize = 20
     30 let g:netrw_banner = 0
     31 
     32 function! Toggle_transparent()
     33 	:colors default
     34 	call Set_Highlights()
     35 	if t:is_transparent == 0
     36 		hi Normal guibg=NONE ctermbg=NONE
     37 		let t:is_transparent = 1
     38 	else
     39 		hi Normal guibg=#111111 ctermbg=black
     40 		let t:is_transparent = 0
     41 	endif
     42 endfunction
     43 
     44 function! Set_Highlights()
     45 	highlight VertSplit		cterm=none	gui=none
     46 	highlight StatusLineNC		ctermbg=241	ctermfg=0
     47 	highlight StatusLine		ctermbg=0	ctermfg=238
     48 	highlight IncSearch		ctermbg=3	ctermfg=1
     49 	highlight Search		ctermbg=241	ctermfg=3
     50 	highlight StatusLineTerm	ctermbg=238	ctermfg=0	cterm=NONE
     51 	highlight StatusLineTermNC	ctermbg=0	ctermfg=238	cterm=NONE
     52 endfunction
     53 
     54 function! Toggle_bookmode()
     55 	if t:is_book == 0
     56 		set tw=80
     57 		set wrapmargin=0
     58 		call Format()
     59 		let t:is_book = 1
     60 	else
     61 		set tw=0
     62 		set wrapmargin=1
     63 		call Format()
     64 		let t:is_book = 0
     65 	endif
     66 endfunction
     67 
     68 function! Change_Res(op,val,isvert)
     69 	let c = v:count == 0 ? 1*a:val : v:count*a:val
     70 	let cmd = a:isvert ? ':vert res' : ':res'
     71 	exec cmd . a:op . c
     72 	echo a:op . c
     73 endfunction
     74 
     75 function! Set_IDE()
     76 	:Lex
     77 	:bo term
     78 	:resize -10
     79 	wincmd w
     80 	wincmd w
     81 endfunction
     82 
     83 function! Format()
     84 	call feedkeys("gggqG")
     85 	call Clear_whitespace()
     86 endfunction
     87 
     88 function! Clear_whitespace()
     89 	:%s/\ *\ /\ /g
     90 endfunction
     91 
     92 runtime! ftplugin/man.vim
     93 
     94 tnoremap <leader>w <C-w><C-w>
     95 tnoremap <leader>i <C-w><S-n>
     96 tnoremap <leader>R <C-w><S-n>:so /etc/vimrc<CR>i
     97 tnoremap <leader>t <C-w><S-n>: call Toggle_transparent()<CR>i
     98 tnoremap <leader><up> <C-w><S-n>:<C-U>call Change_Res('+',5,0)<CR>i
     99 tnoremap <leader><down> <C-w><S-n>:<C-U>call Change_Res('-',5,0)<CR>i
    100 tnoremap <leader><right> <C-w><S-n>:<C-U>call Change_Res('+',5,1)<CR>i
    101 tnoremap <leader><left> <C-w><S-n>:<C-U>call Change_Res('-',5,1)<CR>i
    102 
    103 nnoremap <leader><up> :<C-U>call Change_Res('+',5,0)<CR>
    104 nnoremap <leader><down> :<C-U>call Change_Res('-',5,0)<CR>
    105 nnoremap <leader><right> :<C-U>call Change_Res('+',5,1)<CR>
    106 nnoremap <leader><left> :<C-U>call Change_Res('-',5,1)<CR>
    107 nnoremap <leader>w <C-w><C-w>
    108 nnoremap <leader>R :so /etc/vimrc<CR>
    109 nnoremap <leader>T :bo ter<CR>
    110 nnoremap <leader>t : call Toggle_transparent()<CR>
    111 nnoremap <leader>b : call Toggle_bookmode()<CR>
    112 nnoremap <leader>f : call Format()<CR>
    113 nnoremap <leader>c : call Clear_whitespace()<CR>
    114 nnoremap <leader>e : call Set_IDE()<CR>
    115 
    116 vnoremap <leader>y "+y
    117 vnoremap <leader>p "+p
    118 vnoremap <leader>P "_dP
    119 
    120 cmap suw w !sudo tee > /dev/null %
    121 
    122 autocmd BufWritePost,FileWritePost config.def.h !sudo rm config.h && sudo make install
    123 autocmd VimEnter * call Set_Highlights()
    124 
    125 autocmd FileType asciidoc map <F2> :w <CR> :!htmlconv %<CR>
    126 autocmd FileType markdown map <F2> :w <CR> :!htmlconv %<CR>
    127 autocmd FileType c map <F2> :w <CR> :!gcc % -o %< && ./%< <CR>
    128 autocmd FileType c map <F3> :w <CR> :!gcc % -g -o %< && gdb ./%< <CR>
    129 autocmd FileType cpp map <F2> :w <CR> :!g++ % -o %< && ./%< <CR>
    130 autocmd FileType cpp map <F3> :w <CR> :!g++ % -g -o %< && gdb ./%< <CR>
    131 autocmd FileType c,cpp map <F4> :w <CR> :!make && ./%< <CR>
    132 autocmd FileType c,cpp map <F5> :w <CR> :!make && gdb ./%< <CR>
    133 
    134 autocmd FileType c :command! -bar -nargs=* Run :w | :!gcc % -o %< && ./%< <args>
    135 autocmd FileType c :command! -bar -nargs=* Rund :w | :!gcc % -o %< && gdb --args ./%< <args>
    136 autocmd FileType cpp :command! -bar -nargs=* Run :w | :!g++ % -o %< && ./%< <args>
    137 autocmd FileType cpp :command! -bar -nargs=* Rund :w | :!g++ % -o %< && gdb --args ./%< <args>
    138 autocmd FileType c,cpp :command! -bar -nargs=* Runm :w | :!make && ./%< <args>
    139 autocmd FileType c,cpp :command! -bar -nargs=* Runmd :w | :!make && gdb --args ./%< <args>