plugins.lua 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. --vim.cmd [[packadd packer.nvim]]
  2. local execute = vim.api.nvim_command
  3. local fn = vim.fn
  4. local install_path = fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim'
  5. if fn.empty(fn.glob(install_path)) > 0 then
  6. execute('!git clone https://github.com/wbthomason/packer.nvim ' .. install_path)
  7. execute 'packadd packer.nvim'
  8. end
  9. vim.cmd 'autocmd BufWritePost plugins.lua PackerCompile' -- Auto compile when there are changes in plugins.lua
  10. return require('packer').startup(function(use)
  11. -- Packer can manage itself as an optional plugin
  12. use 'wbthomason/packer.nvim'
  13. -- Information
  14. use 'nanotee/nvim-lua-guide'
  15. -- Quality of life improvements
  16. use 'norcalli/nvim_utils'
  17. -- LSP
  18. use 'neovim/nvim-lspconfig'
  19. use 'glepnir/lspsaga.nvim'
  20. use 'onsails/lspkind-nvim'
  21. use 'kosayoda/nvim-lightbulb'
  22. use 'mfussenegger/nvim-jdtls'
  23. -- Debugging
  24. use 'mfussenegger/nvim-dap'
  25. -- Autocomplete
  26. use 'hrsh7th/nvim-compe'
  27. use 'christianchiarulli/emmet-vim'
  28. use 'hrsh7th/vim-vsnip'
  29. use 'xabikos/vscode-javascript'
  30. use 'dsznajder/vscode-es7-javascript-react-snippets'
  31. use 'golang/vscode-go'
  32. use 'rust-lang/vscode-rust'
  33. use 'ChristianChiarulli/html-snippets'
  34. use 'ChristianChiarulli/java-snippets'
  35. use 'ChristianChiarulli/python-snippets'
  36. -- use 'cstrap/python-snippets'
  37. -- use 'ylcnfrht/vscode-python-snippet-pack'
  38. -- use 'SirVer/ultisnips'
  39. -- use 'norcalli/snippets.nvim'
  40. -- Treesitter
  41. use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'}
  42. use 'nvim-treesitter/nvim-treesitter-refactor'
  43. use 'nvim-treesitter/playground'
  44. use 'p00f/nvim-ts-rainbow'
  45. -- Icons
  46. use 'kyazdani42/nvim-web-devicons'
  47. use 'ryanoasis/vim-devicons'
  48. -- Status Line and Bufferline
  49. use 'glepnir/galaxyline.nvim'
  50. -- use {'akinsho/nvim-bufferline.lua', requires = 'kyazdani42/nvim-web-devicons'}
  51. use 'romgrk/barbar.nvim'
  52. -- Telescope
  53. use 'nvim-lua/popup.nvim'
  54. use 'nvim-lua/plenary.nvim'
  55. use 'nvim-telescope/telescope.nvim'
  56. use 'nvim-telescope/telescope-media-files.nvim'
  57. -- Explorer
  58. use 'kyazdani42/nvim-tree.lua'
  59. -- Color
  60. use 'christianchiarulli/nvcode-color-schemes.vim'
  61. use 'norcalli/nvim-colorizer.lua'
  62. -- Git
  63. use 'TimUntersberger/neogit'
  64. use {'lewis6991/gitsigns.nvim', requires = {'nvim-lua/plenary.nvim'}}
  65. use 'f-person/git-blame.nvim'
  66. use 'tpope/vim-fugitive'
  67. use 'tpope/vim-rhubarb'
  68. -- Easily Create Gists
  69. use 'mattn/vim-gist'
  70. use 'mattn/webapi-vim'
  71. -- Webdev
  72. use 'windwp/nvim-ts-autotag'
  73. use 'gennaro-tedesco/nvim-jqx'
  74. use 'turbio/bracey.vim'
  75. -- Registers
  76. use 'gennaro-tedesco/nvim-peekup'
  77. -- General Plugins
  78. use 'windwp/nvim-autopairs'
  79. use 'kevinhwang91/nvim-bqf'
  80. use 'unblevable/quick-scope'
  81. use 'airblade/vim-rooter'
  82. use 'kevinhwang91/rnvimr'
  83. use 'mhinz/vim-startify'
  84. use 'metakirby5/codi.vim'
  85. use 'psliwka/vim-smoothie'
  86. use 'moll/vim-bbye'
  87. use {'iamcco/markdown-preview.nvim', run = 'cd app && npm install'}
  88. use 'liuchengxu/vim-which-key'
  89. use 'voldikss/vim-floaterm'
  90. use 'liuchengxu/vista.vim'
  91. use 'terrortylor/nvim-comment'
  92. use 'bfredl/nvim-miniyank'
  93. use 'junegunn/goyo.vim'
  94. use 'andymass/vim-matchup'
  95. use 'phaazon/hop.nvim'
  96. use 'tpope/vim-sleuth'
  97. use 'sheerun/vim-polyglot'
  98. -- TODO put this back when stable for indent lines
  99. -- use { 'lukas-reineke/indent-blankline.nvim', branch = 'lua'}
  100. -- vim.g.indent_blankline_space_char = ' '
  101. -- vim.g.indent_blankline_buftype_exclude = {'terminal'}
  102. -- vim.g.indent_blankline_filetype_exclude = {'help', 'startify'}
  103. -- vim.g.indent_blankline_char = '▏'
  104. -- vim.g.indent_blankline_use_treesitter=true
  105. -- use 'AndrewRadev/tagalong.vim'
  106. -- use 'alvan/vim-closetag'
  107. -- use 'RRethy/vim-illuminate'
  108. -- use 'b3nj5m1n/kommentary'
  109. -- use {
  110. -- 'glacambre/firenvim',
  111. -- run = function()
  112. -- vim.fn['firenvim#install'](1)
  113. -- end
  114. -- }
  115. end)