💾 Archived View for lolcathost.org › tmp › rcfiles › vimrc.txt captured on 2024-06-16 at 12:17:12.

View Raw

More Information

⬅️ Previous capture (2023-11-04)

-=-=-=-=-=-=-


set cinoptions=p0,t0,:0,=8
set cindent

" colorscheme desert
" peachpuff
set noexpandtab
set hlsearch
set nu
set mouse=a
sy on
" pancake's exposee for vim:
let fs=0
fun Exposee()
if (g:fs == 0)
  res 1000
  vertical res 1000
  let g:fs=1
else
  exe "normal \<C-W>="
  let g:fs=0
endif
endfun
map <F10> :call Exposee()<cr>

"some nice keymappings
map <F1> :vsp<cr>
map <F2> :sp<cr>
map <F3> :sp<cr>:e .<cr>
map <F4> :q<cr>
map <F5> <C-W>=

" fine zooming
map <C-J> 2<C-W>+
map <C-K> 2<C-W>-
map <C-L> 2<C-W>>
map <C-H> 2<C-W><

" fine frame moving
map <C-Y> <C-W>h
map <C-U> <C-W>j
map <C-I> <C-W>k
map <C-O> <C-W>l

au BufRead,BufNewFile *.v set filetype=go