forked from LunarVim/LunarVim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.lua
More file actions
91 lines (72 loc) · 2.39 KB
/
Copy pathplugins.lua
File metadata and controls
91 lines (72 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
local execute = vim.api.nvim_command
local fn = vim.fn
local install_path = fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim'
if fn.empty(fn.glob(install_path)) > 0 then
execute('!git clone https://github.com/wbthomason/packer.nvim ' .. install_path)
execute 'packadd packer.nvim'
end
vim.cmd 'autocmd BufWritePost plugins.lua PackerCompile' -- Auto compile when there are changes in plugins.lua
return require('packer').startup(function(use)
-- Packer can manage itself as an optional plugin
use 'wbthomason/packer.nvim'
-- Information
use 'nanotee/nvim-lua-guide'
-- Quality of life improvements
use 'norcalli/nvim_utils'
-- Explorer
use 'kyazdani42/nvim-tree.lua'
-- Color
use 'norcalli/nvim-colorizer.lua'
-- LSP
use 'neovim/nvim-lspconfig'
use 'glepnir/lspsaga.nvim'
use 'onsails/lspkind-nvim'
use 'kosayoda/nvim-lightbulb'
use 'kabouzeid/nvim-lspinstall'
-- Debugging
use 'mfussenegger/nvim-dap'
-- Autocomplete
use 'hrsh7th/nvim-compe'
use 'hrsh7th/vim-vsnip'
use 'xabikos/vscode-javascript'
use 'dsznajder/vscode-es7-javascript-react-snippets'
-- Treesitter
use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'}
use 'nvim-treesitter/nvim-treesitter-refactor'
use {'lukas-reineke/indent-blankline.nvim'}
-- Icons
use 'kyazdani42/nvim-web-devicons'
use 'ryanoasis/vim-devicons'
-- Tab Line
use 'romgrk/barbar.nvim'
-- Status Line
use 'glepnir/galaxyline.nvim'
-- Telescope
use 'nvim-lua/popup.nvim'
use 'nvim-lua/plenary.nvim'
use 'nvim-telescope/telescope.nvim'
use 'nvim-telescope/telescope-media-files.nvim'
-- Git
use 'TimUntersberger/neogit'
use {'lewis6991/gitsigns.nvim', requires = {'nvim-lua/plenary.nvim'}}
use 'f-person/git-blame.nvim'
use 'tpope/vim-fugitive'
use 'tpope/vim-rhubarb'
use 'kdheepak/lazygit.nvim'
-- Webdev
use 'windwp/nvim-ts-autotag'
-- use 'gennaro-tedesco/nvim-jqx'
-- General Plugins
use 'windwp/nvim-autopairs'
use 'kevinhwang91/nvim-bqf'
use 'unblevable/quick-scope'
use 'airblade/vim-rooter'
use 'mhinz/vim-startify'
use 'terrortylor/nvim-comment'
use 'kevinhwang91/rnvimr'
use 'voldikss/vim-floaterm'
use 'liuchengxu/vim-which-key'
use 'sheerun/vim-polyglot'
use 'phaazon/hop.nvim'
use 'psliwka/vim-smoothie'
end)