Skip to content

Instantly share code, notes, and snippets.

@BbsonLin
Last active October 12, 2018 12:48
Show Gist options
  • Save BbsonLin/bd2610974c040257130a2647a27d7056 to your computer and use it in GitHub Desktop.
Save BbsonLin/bd2610974c040257130a2647a27d7056 to your computer and use it in GitHub Desktop.
My .vimrc. Need to install https://github.com/junegunn/vim-plug first.
set nu
set bg=dark
if has("autocmd")
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g`\"" | endif
endif
call plug#begin('~/.vim/plugged')
Plug 'posva/vim-vue'
Plug 'dart-lang/dart-vim-plugin'
" Initialize plugin system
call plug#end()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment