Skip to content

Instantly share code, notes, and snippets.

@42wim
Last active November 18, 2020 19:17
Show Gist options
  • Save 42wim/6411625b20d2f15b1f93475857ee56b0 to your computer and use it in GitHub Desktop.
Save 42wim/6411625b20d2f15b1f93475857ee56b0 to your computer and use it in GitHub Desktop.
nvim configuration
"leader key is ,
let mapleader = ","
let g:mapleader = ","
set nocompatible
set rtp+=~/.nvim
call plug#begin('~/.nvim/plugged')
Plug 'fatih/vim-go'
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'Shougo/neosnippet.vim'
Plug 'fatih/molokai'
Plug 'Shougo/neosnippet-snippets'
Plug 'vim-ruby/vim-ruby'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'rodjek/vim-puppet'
Plug 'tpope/vim-fugitive'
Plug 'ekalinin/Dockerfile.vim'
Plug 'vim-perl/vim-perl'
"Plug 'plasticboy/vim-markdown'
Plug 'fatih/vim-hclfmt'
Plug 'b4b4r07/vim-hcl'
Plug 'tpope/vim-sleuth'
Plug 'scrooloose/nerdtree'
Plug 'Raimondi/delimitMate'
Plug 'airblade/vim-gitgutter'
Plug 'Yggdroot/indentLine'
Plug 'elzr/vim-json'
Plug 'cespare/vim-toml'
Plug 'tpope/vim-endwise'
Plug 'Vimjas/vim-python-pep8-indent'
Plug 'z0mbix/vim-shfmt', { 'for': 'sh' }
Plug 'scrooloose/syntastic'
Plug 'tpope/vim-commentary'
Plug 'terryma/vim-multiple-cursors'
Plug 'SidOfc/mkdx'
Plug 'hashivim/vim-terraform'
Plug 'rust-lang/rust.vim'
Plug 'racer-rust/vim-racer'
Plug 'godlygeek/tabular'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end()
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment