Skip to content

Instantly share code, notes, and snippets.

@flaviotorres
Created August 17, 2018 19:49
Show Gist options
  • Save flaviotorres/b37d0e5302b90f9e20e233ad3a1f0bf8 to your computer and use it in GitHub Desktop.
Save flaviotorres/b37d0e5302b90f9e20e233ad3a1f0bf8 to your computer and use it in GitHub Desktop.
ultimate vimrc
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