summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/lua/plugins.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua
index 7395895..93a5aa2 100644
--- a/.config/nvim/lua/plugins.lua
+++ b/.config/nvim/lua/plugins.lua
@@ -16,7 +16,6 @@ return require('packer').startup(function()
16 'nvim-treesitter/nvim-treesitter', 16 'nvim-treesitter/nvim-treesitter',
17 run = ':TSUpdate' 17 run = ':TSUpdate'
18 } 18 }
19 use 'nvim-treesitter/playground'
20 19
21 -- quickstart lsp config 20 -- quickstart lsp config
22 use 'neovim/nvim-lspconfig' 21 use 'neovim/nvim-lspconfig'
@@ -25,9 +24,9 @@ return require('packer').startup(function()
25 use 'glepnir/dashboard-nvim' 24 use 'glepnir/dashboard-nvim'
26 25
27 -- completion suite 26 -- completion suite
27 use 'hrsh7th/nvim-cmp'
28 use 'hrsh7th/cmp-nvim-lsp' 28 use 'hrsh7th/cmp-nvim-lsp'
29 use 'hrsh7th/cmp-buffer' 29 use 'hrsh7th/cmp-buffer'
30 use 'hrsh7th/nvim-cmp'
31 use 'kdheepak/cmp-latex-symbols' 30 use 'kdheepak/cmp-latex-symbols'
32 use 'quangnguyen30192/cmp-nvim-ultisnips' 31 use 'quangnguyen30192/cmp-nvim-ultisnips'
33 32
@@ -148,6 +147,7 @@ return require('packer').startup(function()
148 -- provides ga, show unicode stuff of char under cursor 147 -- provides ga, show unicode stuff of char under cursor
149 use 'tpope/vim-characterize' 148 use 'tpope/vim-characterize'
150 -- comment helper 149 -- comment helper
150 -- https://github.com/numToStr/Comment.nvim hip & cool
151 use 'tpope/vim-commentary' 151 use 'tpope/vim-commentary'
152 -- asynchronous build and test dispatcher 152 -- asynchronous build and test dispatcher
153 use {'tpope/vim-dispatch', opt = true, cmd = {'Dispatch', 'Make', 'Focus', 'Start'}} 153 use {'tpope/vim-dispatch', opt = true, cmd = {'Dispatch', 'Make', 'Focus', 'Start'}}