dotfiles/neovim/.config/nvim/lua/plugins.lua

80 lines
1.9 KiB
Lua

return require('packer').startup(function(use)
-- Packer can manage itself
use 'wbthomason/packer.nvim'
-- Visuals
use 'kyazdani42/nvim-web-devicons'
use {
'nvim-lualine/lualine.nvim',
requires = { 'kyazdani42/nvim-web-devicons', opt = true }
}
use 'cocopon/iceberg.vim'
use {
"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
}
end
}
-- Handling
use {
'nvim-telescope/telescope.nvim', tag = '0.1.5',
requires = { {'nvim-lua/plenary.nvim'} }
}
use 'ggandor/leap.nvim'
use {
'ldelossa/gh.nvim',
requires = { { 'ldelossa/litee.nvim' } }
}
use {
"folke/which-key.nvim",
config = function()
require("which-key").setup {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
end
}
use 'akinsho/toggleterm.nvim'
-- Completion
-- use 'github/copilot.vim'
use 'hrsh7th/nvim-cmp'
use({
"L3MON4D3/LuaSnip",
run = "make install_jsregexp"
})
use 'saadparwaiz1/cmp_luasnip'
-- use 'zbirenbaum/copilot.lua'
-- use 'zbirenbaum/copilot-cmp'
use 'hrsh7th/cmp-nvim-lsp'
-- Development
use 'neovim/nvim-lspconfig'
use 'mfussenegger/nvim-dap'
use 'mfussenegger/nvim-dap-python'
use 'rcarriga/nvim-dap-ui'
use 'theHamsta/nvim-dap-virtual-text'
use {
"nvim-neotest/neotest",
requires = {
"nvim-neotest/nvim-nio",
"nvim-neotest/neotest-python",
"nvim-neotest/neotest-plenary",
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",
"antoinemadec/FixCursorHold.nvim"
}
}
use({
"andythigpen/nvim-coverage",
requires = "nvim-lua/plenary.nvim",
})
end)