Created
August 17, 2018 19:49
-
-
Save flaviotorres/b37d0e5302b90f9e20e233ad3a1f0bf8 to your computer and use it in GitHub Desktop.
ultimate vimrc
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 nocompatible | |
if empty(glob('~/.vim/autoload/plug.vim')) | |
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
endif | |
call plug#begin('~/.vim/bundle') | |
Plug 'Siphalor/vim-atomified' | |
Plug 'flazz/vim-colorschemes' | |
Plug 'jiangmiao/auto-pairs' | |
Plug 'vim-scripts/AutoComplPop' | |
Plug 'sheerun/vim-polyglot' | |
call plug#end() | |
if !empty(glob('~/.vim/bundle/vim-atomified/colors/atomified.vim')) | |
colorscheme atomified | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment