Skip to content

Instantly share code, notes, and snippets.

@mofas
Created September 20, 2016 09:09
Show Gist options
  • Save mofas/2f8c281f5f8b532b995c23b78d320f75 to your computer and use it in GitHub Desktop.
Save mofas/2f8c281f5f8b532b995c23b78d320f75 to your computer and use it in GitHub Desktop.
call plug#begin('~/.vim/plugged')
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'scrooloose/nerdtree'
Plug 'tpope/vim-repeat'
Plug 'jiangmiao/auto-pairs'
Plug 'airblade/vim-gitgutter'
Plug 'nathanaelkane/vim-indent-guides'
Plug 'itchyny/lightline.vim'
Plug 'othree/yajs.vim'
Plug 'othree/es.next.syntax.vim'
Plug 'mxw/vim-jsx'
Plug 'othree/javascript-libraries-syntax.vim'
Plug 'scrooloose/syntastic'
Plug 'bling/vim-airline'
call plug#end()
"== junegunn/fzf ==
nnoremap <C-T> :FZF<CR>
inoremap <C-T> <ESC>:FZF<CR>i
"== scrooloose/nerdtree ==
nnoremap <C-\> :NERDTreeToggle<CR>
inoremap <C-\> <ESC>:NERDTreeToggle<CR>"
@mofas
Copy link
Author

mofas commented Mar 21, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment