plugins.vim 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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 'navarasu/onedark.nvim'
  13. Plug 'itchyny/landscape.vim'
  14. " fuzzy find files
  15. Plug 'ctrlpvim/ctrlp.vim'
  16. " faster nerdtree
  17. Plug 'lambdalisue/fern.vim', {'branch': 'main'}
  18. " w/ git status integration
  19. Plug 'lambdalisue/fern-git-status.vim'
  20. " w/ colored nerdfont icons
  21. Plug 'lambdalisue/nerdfont.vim'
  22. Plug 'lambdalisue/fern-renderer-nerdfont.vim'
  23. Plug 'lambdalisue/glyph-palette.vim'
  24. " and a floating, scrollable preview window
  25. Plug 'yuki-yano/fern-preview.vim'
  26. " nice statusline for vim
  27. Plug 'vim-airline/vim-airline'
  28. " plus themes
  29. Plug 'vim-airline/vim-airline-themes'
  30. " some git integration
  31. Plug 'tpope/vim-fugitive'
  32. Plug 'lewis6991/gitsigns.nvim'
  33. " native LSP support
  34. Plug 'neovim/nvim-lspconfig'
  35. Plug 'ThePrimeagen/refactoring.nvim'
  36. " modern completion engine
  37. Plug 'Saghen/blink.cmp'
  38. " snippet support
  39. Plug 'L3MON4D3/LuaSnip'
  40. " formatting and linting
  41. Plug 'stevearc/conform.nvim'
  42. Plug 'mfussenegger/nvim-lint'
  43. " auto disable search highlighting
  44. Plug 'romainl/vim-cool'
  45. " easy commenting
  46. Plug 'tpope/vim-commentary'
  47. " tag bar for easy navigation
  48. Plug 'preservim/tagbar'
  49. " better html / css handling
  50. Plug 'mattn/emmet-vim'
  51. " fast search 'n' jump
  52. Plug 'justinmk/vim-sneak'
  53. " fancy start screen
  54. Plug 'mhinz/vim-startify'
  55. " w/ nerdfont icons
  56. Plug 'csch0/vim-startify-renderer-nerdfont'
  57. " easily change surrounding elements
  58. Plug 'tpope/vim-surround'
  59. " use treesitter inside nvim
  60. Plug 'nvim-treesitter/nvim-treesitter', { 'branch': 'main', 'do': ':TSUpdate' }
  61. " adds indentation guides to all lines
  62. Plug 'lukas-reineke/indent-blankline.nvim'
  63. " highly extensible fuzzy finder
  64. Plug 'nvim-telescope/telescope.nvim'
  65. " w/ media preview
  66. Plug 'nvim-telescope/telescope-media-files.nvim'
  67. " w/ dependencies
  68. Plug 'nvim-lua/plenary.nvim'
  69. " a more adventurous wildmenu
  70. Plug 'gelguy/wilder.nvim', { 'do': function('UpdateRemotePlugins') }
  71. " markdown preview in browser tab and full sync
  72. Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']}
  73. " when you forget which key to press
  74. Plug 'folke/which-key.nvim'
  75. " general whitespace highlighter + remover
  76. Plug 'ntpeters/vim-better-whitespace'
  77. " access an external colorpicker directly from neovim
  78. Plug 'KabbAmine/vCoolor.vim'
  79. " easier buffer resizing
  80. Plug 'ahonn/resize.vim'
  81. " fast colorizer
  82. Plug 'NvChad/nvim-colorizer.lua'
  83. " for android dev
  84. Plug 'hsanson/vim-android'
  85. call plug#end()