Paste #8Mc -- näytä pelkkänä tekstinä -- uusi tämän pohjalta
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # celeron55's ~/.vimrc
set nocompatible
set tabstop=4
set shiftwidth=4
syntax on
set background=dark
set indentexpr=on
map - :tabnext<CR>
map . :tabprev<CR>
map , :wincmd w<CR>
command -nargs=1 HCC tabnew <args>.cpp | vsplit <args>.h
command -nargs=1 HC tabnew <args>.c | vsplit <args>.h
set scrolloff=1000
set ai
set tabpagemax=50
set list lcs=nbsp:_
set nolist
map ´ :tab split<CR>:exec("tag ".expand("<cword>"))<CR>
au WinEnter * checktime
|