plugins.vim 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. " with nerdfont icons
  20. Plug 'lambdalisue/nerdfont.vim'
  21. Plug 'lambdalisue/fern-renderer-nerdfont.vim'
  22. " asynchronous lint engine
  23. "Plug 'dense-analysis/ale'
  24. " nice statusline for vim
  25. Plug 'vim-airline/vim-airline'
  26. " plus themes
  27. Plug 'vim-airline/vim-airline-themes'
  28. " some git integration
  29. Plug 'tpope/vim-fugitive'
  30. " preview colours
  31. Plug 'ap/vim-css-color'
  32. " intellisense
  33. Plug 'neoclide/coc.nvim', {'branch': 'release'}
  34. " auto disable search highlighting
  35. Plug 'romainl/vim-cool'
  36. " graphical debugger
  37. "Plug 'puremourning/vimspector'
  38. Plug 'kien/rainbow_parentheses.vim'
  39. call plug#end()