Last active
January 5, 2018 08:41
-
-
Save tallakt/9b5caa8bf1e230039c7a67bcefedc76b to your computer and use it in GitHub Desktop.
init.vim
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('~/.local/share/nvim/site/autoload/plug.vim')) | |
silent !curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs | |
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
autocmd VimEnter * PlugInstall --sync | source ~/.config/nvim/init.vim | |
endif | |
call plug#begin('~/.local/share/nvim/plugged') | |
Plug 'andymass/vim-matchup' | |
Plug 'frankier/neovim-colors-solarized-truecolor-only' | |
Plug 'elixir-lang/vim-elixir' | |
Plug 'nelstrom/vim-textobj-rubyblock' | |
Plug 'kana/vim-textobj-user' | |
Plug 'kien/ctrlp.vim' | |
Plug 'bling/vim-airline' | |
Plug 'tpope/vim-fugitive' | |
Plug 'ludovicchabant/vim-gutentags' | |
Plug 'lervag/vimtex' | |
Plug 'w0rp/ale' | |
Plug 'mattn/gist-vim' | |
Plug 'mattn/webapi-vim' | |
call plug#end() | |
set laststatus=2 " show airline | |
set noshowmode " for airline | |
set visualbell | |
let g:airline_powerline_fonts = 1 " for airline | |
set termguicolors | |
set background=dark | |
colorscheme solarized | |
set colorcolumn=80 | |
set ignorecase | |
set smartcase |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment