Last active
October 12, 2018 12:48
-
-
Save BbsonLin/bd2610974c040257130a2647a27d7056 to your computer and use it in GitHub Desktop.
My .vimrc. Need to install https://github.com/junegunn/vim-plug first.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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