aboutsummaryrefslogtreecommitdiffstats
path: root/vim/nvim/lua/plugins.lua
diff options
context:
space:
mode:
Diffstat (limited to 'vim/nvim/lua/plugins.lua')
-rw-r--r--vim/nvim/lua/plugins.lua22
1 files changed, 11 insertions, 11 deletions
diff --git a/vim/nvim/lua/plugins.lua b/vim/nvim/lua/plugins.lua
index a9d98c9..134d669 100644
--- a/vim/nvim/lua/plugins.lua
+++ b/vim/nvim/lua/plugins.lua
@@ -4,21 +4,21 @@ return require('packer').startup(function(use)
use 'vim-airline/vim-airline-themes'
use 'neovim/nvim-lspconfig'
use {'quick-lint/quick-lint-js', rtp = 'plugin/vim/quick-lint-js.vim', tag = '2.10.0', opt = true}
- use 'hrsh7th/nvim-cmp' -- Autocompletion plugin
- use 'hrsh7th/cmp-nvim-lsp' -- LSP source for nvim-cmp
- use 'saadparwaiz1/cmp_luasnip' -- Snippets source for nvim-cmp
+ use 'hrsh7th/nvim-cmp'
+ use 'hrsh7th/cmp-nvim-lsp'
+ use 'saadparwaiz1/cmp_luasnip'
use 'onsails/lspkind.nvim'
- use 'L3MON4D3/LuaSnip' -- Snippets plugin
+ use 'L3MON4D3/LuaSnip'
use {
- "folke/trouble.nvim",
- requires = "kyazdani42/nvim-web-devicons",
+ 'folke/trouble.nvim',
+ requires = 'kyazdani42/nvim-web-devicons',
config = function()
- require("trouble").setup {
- -- your configuration comes here
- -- or leave it empty to use the default settings
- -- refer to the configuration section below
+ require('trouble').setup {
+
}
end
}
- use "p00f/clangd_extensions.nvim"
+ use 'p00f/clangd_extensions.nvim'
+ use 'nvim-treesitter/nvim-treesitter'
+ use { "briones-gabriel/darcula-solid.nvim", requires = "rktjmp/lush.nvim" }
end)