Removed dots
This commit is contained in:
parent
d8aa275c9e
commit
14fa5a9cf1
2 changed files with 14 additions and 0 deletions
|
@ -20,6 +20,8 @@ set title
|
||||||
set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx
|
set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx
|
||||||
syntax enable
|
syntax enable
|
||||||
|
|
||||||
|
colorscheme nord-light
|
||||||
|
|
||||||
" PLUGINS --------------------------------------------------------------- {{{
|
" PLUGINS --------------------------------------------------------------- {{{
|
||||||
|
|
||||||
call plug#begin('~/.vim/plugged')
|
call plug#begin('~/.vim/plugged')
|
||||||
|
@ -34,6 +36,13 @@ call plug#end()
|
||||||
if has("autocmd")
|
if has("autocmd")
|
||||||
|
|
||||||
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
||||||
|
|
||||||
|
" https://stackoverflow.com/a/37558470/19044747
|
||||||
|
augroup remember_folds
|
||||||
|
autocmd!
|
||||||
|
autocmd BufWinLeave * mkview
|
||||||
|
autocmd BufWinEnter * silent! loadview
|
||||||
|
augroup END
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" TALK ------------------------------------------------------------------ {{{
|
" TALK ------------------------------------------------------------------ {{{
|
||||||
|
@ -53,6 +62,11 @@ command! MakeTags !ctags -R . &
|
||||||
" Move to ambigious using g^]
|
" Move to ambigious using g^]
|
||||||
" Move back using ^t
|
" Move back using ^t
|
||||||
|
|
||||||
|
" File browsing
|
||||||
|
let g:netrw_browse_split=4 " open in the previous window
|
||||||
|
let g:netrw_altv=1 " split new windows to the right
|
||||||
|
let g:netrw_liststyle=3 " treeview
|
||||||
|
|
||||||
" Autocomplete
|
" Autocomplete
|
||||||
" Also see https://vimhelp.org/options.txt.html#%27complete%27
|
" Also see https://vimhelp.org/options.txt.html#%27complete%27
|
||||||
" ^n next
|
" ^n next
|
Loading…
Reference in a new issue