plugins.vim 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. " Run PlugInstall if there are missing plugins
  2. "autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
  3. " \| PlugInstall --sync | source $VIMINIT
  4. "\| endif
  5. call plug#begin('~/.cache/vim/plugged')
  6. " colorshemes
  7. "Plug 'morhetz/gruvbox'
  8. "Plug 'itchyny/landscape.vim'
  9. "Plug 'rakr/vim-one'
  10. Plug 'joshdick/onedark.vim'
  11. " better syntax support
  12. Plug 'sheerun/vim-polyglot'
  13. " fuzzy find files
  14. Plug 'ctrlpvim/ctrlp.vim'
  15. " faster nerdtree
  16. Plug 'lambdalisue/fern.vim'
  17. " with git status integration
  18. Plug 'lambdalisue/fern-git-status.vim'
  19. " asynchronous lint engine
  20. "Plug 'dense-analysis/ale'
  21. " nice statusline for vim
  22. Plug 'vim-airline/vim-airline'
  23. " plus themes
  24. Plug 'vim-airline/vim-airline-themes'
  25. " some git integration
  26. Plug 'tpope/vim-fugitive'
  27. " preview colours
  28. Plug 'ap/vim-css-color'
  29. " intellisense
  30. Plug 'neoclide/coc.nvim', {'branch': 'release'}
  31. " auto disable search highlighting
  32. Plug 'romainl/vim-cool'
  33. " graphical debugger
  34. "Plug 'puremourning/vimspector'
  35. Plug 'kien/rainbow_parentheses.vim'
  36. call plug#end()