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

80 lines
1.9 KiB
Lua
Raw Normal View History

2022-08-25 14:11:17 +02:00
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 }
}
2022-10-12 09:33:11 +02:00
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
}
2022-10-13 16:29:56 +02:00
2022-10-12 09:33:11 +02:00
-- Handling
use {
2024-04-24 16:51:35 +02:00
'nvim-telescope/telescope.nvim', tag = '0.1.5',
2022-10-12 09:33:11 +02:00
requires = { {'nvim-lua/plenary.nvim'} }
}
use 'ggandor/leap.nvim'
use {
'ldelossa/gh.nvim',
requires = { { 'ldelossa/litee.nvim' } }
2022-08-25 14:11:17 +02:00
}
2022-10-12 09:33:11 +02:00
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
}
2023-10-19 19:53:56 +02:00
use 'akinsho/toggleterm.nvim'
2022-08-25 14:11:17 +02:00
-- Completion
2024-04-24 16:51:35 +02:00
-- use 'github/copilot.vim'
2022-08-25 14:11:17 +02:00
use 'hrsh7th/nvim-cmp'
2024-04-24 16:51:35 +02:00
use({
"L3MON4D3/LuaSnip",
run = "make install_jsregexp"
})
2023-10-19 19:53:56 +02:00
use 'saadparwaiz1/cmp_luasnip'
2024-04-24 16:51:35 +02:00
-- use 'zbirenbaum/copilot.lua'
-- use 'zbirenbaum/copilot-cmp'
2022-08-25 14:11:17 +02:00
use 'hrsh7th/cmp-nvim-lsp'
2022-10-12 09:33:11 +02:00
-- Development
2022-08-25 14:11:17 +02:00
use 'neovim/nvim-lspconfig'
2022-10-12 09:33:11 +02:00
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 = {
2024-04-24 16:51:35 +02:00
"nvim-neotest/nvim-nio",
"nvim-neotest/neotest-python",
"nvim-neotest/neotest-plenary",
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter",
"antoinemadec/FixCursorHold.nvim"
2022-10-12 09:33:11 +02:00
}
}
use({
"andythigpen/nvim-coverage",
requires = "nvim-lua/plenary.nvim",
})
2022-08-25 14:11:17 +02:00
end)