Skip to content

Instantly share code, notes, and snippets.

@tallakt
Last active December 1, 2017 23:29
Show Gist options
  • Save tallakt/1471143 to your computer and use it in GitHub Desktop.
Save tallakt/1471143 to your computer and use it in GitHub Desktop.
VIM setup
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/plugged')
Plug 'altercation/vim-colors-solarized'
Plug 'elixir-lang/vim-elixir'
Plug 'nelstrom/vim-textobj-rubyblock'
Plug 'kana/vim-textobj-user'
Plug 'andymass/vim-matchup'
Plug 'kien/ctrlp.vim'
Plug 'bling/vim-airline'
Plug 'tpope/vim-fugitive'
call plug#end()
set laststatus=2 " show airline
set noshowmode " for airline
set visualbell
let g:airline_powerline_fonts = 1 " for airline
set background=dark
colorscheme solarized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment