dmatosl / vimconfs

my personal vimconfs
1 stars 0 forks source link

the ultimate vimrc #1

Open flaviotorres opened 6 years ago

flaviotorres commented 6 years ago
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
flaviotorres commented 4 years ago

bump @dmatosl