Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vim polygot #1

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 7 additions & 26 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ let g:plug_threads = 2

call plug#begin('~/.vim/plugged')

" General language packs
" Plug 'sheerun/vim-polyglot'
Plug '~/code/tjwallace/vim-polyglot'

" Colors
Plug 'altercation/vim-colors-solarized'

Expand Down Expand Up @@ -50,6 +54,8 @@ Plug 'mhinz/vim-signify'

" Tools - Tab Completion
Plug 'neoclide/coc.nvim', { 'branch': 'release' }
" Plug 'neoclide/coc.nvim', { 'tag': 'v0.0.82' }
" Plug 'neoclide/coc.nvim', { 'commit': 'e956e38964c3b4ec0531ecd9ff6c253b97f2c656' }

" Tools - Formatting
Plug 'Raimondi/delimitMate'
Expand All @@ -60,46 +66,21 @@ Plug 'tpope/vim-repeat'
Plug 'tpope/vim-surround'

" Languages
Plug 'sheerun/vim-polyglot'
Plug 'vim-scripts/csv.vim'
Plug 'tpope/vim-git'
Plug 'tpope/vim-markdown'
Plug 'derekwyatt/vim-scala'
Plug 'hashivim/vim-hashicorp-tools'
Plug 'jparise/vim-graphql'
Plug 'wfxr/protobuf.vim'

" Languages - Ruby
Plug 'tpope/vim-rbenv'
Plug 'vim-ruby/vim-ruby'
Plug 'keith/rspec.vim'
Plug 'tpope/vim-bundler'
Plug 'tpope/vim-rails'
Plug 'slim-template/vim-slim'
Plug 'tpope/vim-haml'
Plug 'tpope/vim-cucumber'

" Languages - Yavascript
Plug 'pangloss/vim-javascript'
Plug 'mxw/vim-jsx'
Plug 'kchmck/vim-coffee-script'
Plug 'othree/javascript-libraries-syntax.vim'
Plug 'burnettk/vim-angular'
Plug 'digitaltoad/vim-jade'
Plug 'prettier/vim-prettier', {
\ 'do': 'yarn install',
\ 'for': ['javascript', 'typescript'] }

" Languages - Yavascript - Typescript
Plug 'HerringtonDarkholme/yats.vim'

" Languages - Web
Plug 'ap/vim-css-color'
Plug 'othree/html5.vim'
Plug 'cakebaker/scss-syntax.vim'
Plug 'iloginow/vim-stylus'

" Languages - Docker
Plug 'ekalinin/Dockerfile.vim'

" Languages - Ansible
Plug 'pearofducks/ansible-vim'
Expand Down