plugins.vim 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. function! UpdateRemotePlugins(...)
  6. " Needed to refresh runtime files
  7. let &rtp=&rtp
  8. UpdateRemotePlugins
  9. endfunction
  10. call plug#begin('~/.cache/vim/plugged')
  11. " colorshemes
  12. Plug 'morhetz/gruvbox'
  13. Plug 'itchyny/landscape.vim'
  14. Plug 'joshdick/onedark.vim'
  15. " better syntax support
  16. Plug 'sheerun/vim-polyglot'
  17. " fuzzy find files
  18. Plug 'ctrlpvim/ctrlp.vim'
  19. " faster nerdtree
  20. Plug 'lambdalisue/fern.vim'
  21. " w/ git status integration
  22. Plug 'lambdalisue/fern-git-status.vim'
  23. " w/ colored nerdfont icons
  24. Plug 'lambdalisue/nerdfont.vim'
  25. Plug 'lambdalisue/fern-renderer-nerdfont.vim'
  26. Plug 'lambdalisue/glyph-palette.vim'
  27. " and a floating, scrollable preview window
  28. Plug 'yuki-yano/fern-preview.vim'
  29. " asynchronous lint engine
  30. "Plug 'dense-analysis/ale'
  31. " nice statusline for vim
  32. Plug 'vim-airline/vim-airline'
  33. " plus themes
  34. Plug 'vim-airline/vim-airline-themes'
  35. " some git integration
  36. Plug 'tpope/vim-fugitive'
  37. " intellisense
  38. Plug 'neoclide/coc.nvim', {'branch': 'release'}
  39. " auto disable search highlighting
  40. Plug 'romainl/vim-cool'
  41. " graphical debugger
  42. "Plug 'puremourning/vimspector'
  43. " use when there are too many parentheses
  44. "Plug 'kien/rainbow_parentheses.vim'
  45. " auto close pairs, etc.
  46. Plug 'jiangmiao/auto-pairs'
  47. " easy commenting
  48. Plug 'tpope/vim-commentary'
  49. " tag bar for easy navigation
  50. Plug 'preservim/tagbar'
  51. " better html / css handling
  52. Plug 'mattn/emmet-vim'
  53. " fast search 'n' jump
  54. Plug 'justinmk/vim-sneak'
  55. " fancy start screen
  56. Plug 'mhinz/vim-startify'
  57. " w/ nerdfont icons
  58. Plug 'csch0/vim-startify-renderer-nerdfont'
  59. " easily change surrounding elements
  60. Plug 'tpope/vim-surround'
  61. " use treesitter inside nvim
  62. Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
  63. " w/ refactoring capabilites
  64. Plug 'nvim-treesitter/nvim-treesitter-refactor'
  65. " adds indentation guides to all lines
  66. Plug 'lukas-reineke/indent-blankline.nvim'
  67. " add editorconfig support
  68. Plug 'editorconfig/editorconfig-vim'
  69. " highly extensible fuzzy finder
  70. Plug 'nvim-telescope/telescope.nvim'
  71. " w/ media preview
  72. Plug 'nvim-telescope/telescope-media-files.nvim'
  73. " w/ dependencies
  74. Plug 'nvim-lua/popup.nvim'
  75. Plug 'nvim-lua/plenary.nvim'
  76. " a more adventurous wildmenu
  77. Plug 'gelguy/wilder.nvim', { 'do': function('UpdateRemotePlugins') }
  78. " markdown preview in browser tab and full sync
  79. Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']}
  80. " when you forget which key to press
  81. Plug 'folke/which-key.nvim'
  82. " general whitespace highlighter + remover
  83. Plug 'ntpeters/vim-better-whitespace'
  84. " access an external colorpicker directly from neovim
  85. Plug 'KabbAmine/vCoolor.vim'
  86. " repo for some code snippets
  87. Plug 'honza/vim-snippets'
  88. " easier buffer resizing
  89. Plug 'ahonn/resize.vim'
  90. " fast colorizer
  91. Plug 'norcalli/nvim-colorizer.lua'
  92. call plug#end()