Skip to content

Instantly share code, notes, and snippets.

@tallakt
Last active January 5, 2018 08:41
Show Gist options
  • Save tallakt/9b5caa8bf1e230039c7a67bcefedc76b to your computer and use it in GitHub Desktop.
Save tallakt/9b5caa8bf1e230039c7a67bcefedc76b to your computer and use it in GitHub Desktop.
init.vim
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