Last active
December 1, 2017 23:29
-
-
Save tallakt/1471143 to your computer and use it in GitHub Desktop.
VIM setup
This file contains 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
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