Skip to content

Instantly share code, notes, and snippets.

@andrematias
Created December 27, 2020 20:44
Show Gist options
  • Save andrematias/070c98b67e33bc2581a19952bfe0bf24 to your computer and use it in GitHub Desktop.
Save andrematias/070c98b67e33bc2581a19952bfe0bf24 to your computer and use it in GitHub Desktop.
" Specify a directory for plugins
" - For Neovim: stdpath('data') . '/plugged'
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'Valloric/YouCompleteMe', { 'do': './install.py --tern-completer' }
Plug 'eslint/eslint'
Plug 'dense-analysis/ale'
Plug 'pangloss/vim-javascript' " JavaScript support
Plug 'leafgarland/typescript-vim' " TypeScript syntax
Plug 'maxmellon/vim-jsx-pretty' " JS and JSX syntax
Plug 'jparise/vim-graphql' " GraphQL syntax
Plug 'jiangmiao/auto-pairs'
Plug 'tpope/vim-sensible'
Plug 'itchyny/lightline.vim'
Plug 'joshdick/onedark.vim'
Plug 'ap/vim-buftabline'
Plug 'airblade/vim-gitgutter'
Plug 'jistr/vim-nerdtree-tabs'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'majutsushi/tagbar'
Plug 'vim-scripts/indentpython.vim'
Plug 'lepture/vim-jinja'
Plug 'alvan/vim-closetag'
call plug#end()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment