blob: aea6acc03eeb04fb2e2ce448e62266368f25a9f3 (
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
|
" also look at /etc/vim/vimrc
runtime! debian.vim
filetype plugin indent on
" Plugins
" Plugin 'fatih/vim-go'
set mouse=r
set encoding=utf-8
set fileencoding=utf-8
syntax on
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
" display's line numbers
" -set t_te=
" to keep vim from clearing the screen on exit
:set t_te=
" stuff for vim-go
" let g:go_def_mode='gopls'
" let g:go_info_mode='gopls'
" vim -u ~/.config/.vimrc
" set viminfo+=n~/.vim/viminfo
:set viminfo='50,<1000,s100,:0,n~/.cache/viminfo
|