This commit is contained in:
Zacharias-Brohn
2025-02-15 22:59:12 +01:00
parent 9e53ed6666
commit 2ac5fc926a
6 changed files with 213 additions and 47 deletions
+27 -20
View File
@@ -12,13 +12,6 @@ return {
require("config.autosession")
end,
},
{
"neoclide/coc.nvim",
branch = 'release',
},
-- {
-- "sainnhe/gruvbox-material",
-- },
{
"olimorris/onedarkpro.nvim",
config = function()
@@ -54,9 +47,6 @@ return {
require("config.barbar")
end,
},
-- {
-- "itchyny/lightline.vim",
-- },
{
"nvim-lualine/lualine.nvim",
event = "VeryLazy",
@@ -73,15 +63,6 @@ return {
require("config.undotree")
end,
},
-- {
-- "lukas-reineke/indent-blankline.nvim",
-- main = "ibl",
-- ---@module "ibl"
-- ---@type ibl.config
-- config = function()
-- require("config.indent-blankline")
-- end,
-- },
{
"hiphish/rainbow-delimiters.nvim",
},
@@ -124,7 +105,7 @@ return {
{
"mfussenegger/nvim-dap",
config = function()
require("config.dap")
require("config.dapconf")
end,
},
{
@@ -172,4 +153,30 @@ return {
{
"notken12/base46-colors",
},
{
"neovim/nvim-lspconfig",
dependencies = {
"williamboman/mason.nvim",
"williamboman/mason-lspconfig.nvim",
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-path",
"hrsh7th/cmp-cmdline",
"hrsh7th/nvim-cmp",
"L3MON4D3/LuaSnip",
"saadparwaiz1/cmp_luasnip",
"j-hui/fidget.nvim",
},
config = function()
require("config.lspconfig")
end,
},
{
"smolck/command-completion.nvim",
opts = {
border = nil,
highlight_selection = true,
use_matchfuzzy = true,
},
},
}