This commit is contained in:
Zacharias-Brohn
2025-12-10 12:25:21 +01:00
parent 533e740964
commit 8c9d5aba7f
14 changed files with 516 additions and 163 deletions
+46
View File
@@ -0,0 +1,46 @@
return {
{
"olimorris/onedarkpro.nvim",
priority = 1000,
config = function()
require("config.themelight")
end,
},
{
"notken12/base46-colors",
},
{
"loctvl842/monokai-pro.nvim",
config = function()
require("config.monokaipro")
end,
},
{
"catppuccin/nvim",
name = "catppuccin",
-- config = function()
-- require("config.catppuccin")
-- end,
},
{
"rebelot/kanagawa.nvim",
-- config = function()
-- require("config.kanagawa")
-- end,
},
{
"sainnhe/edge",
lazy = false,
priority = 1000,
config = function()
vim.g.edge_enable_italic = 1
vim.g.edge_style = "default"
vim.g.edge_menu_selection_background = "purple"
end,
},
{
"projekt0n/github-nvim-theme",
lazy = false,
priority = 1000,
}
}
+28 -68
View File
@@ -1,14 +1,7 @@
return {
-- {
-- "nvimdev/lspsaga.nvim",
-- config = function()
-- require("config.lspsaga")
-- end,
-- dependencies = {
-- "nvim-tree/nvim-web-devicons",
-- "nvim-treesitter/nvim-treesitter",
-- },
-- },
{
require("plugins.colorschemes")
},
{
"nvim-mini/mini.nvim",
version = false,
@@ -23,29 +16,12 @@ return {
require("config.treesitter")
end,
},
{
"sainnhe/edge",
lazy = false,
priority = 1000,
config = function()
vim.g.edge_enable_italic = 1
vim.g.edge_style = "default"
vim.g.edge_menu_selection_background = "purple"
end,
},
{
"rmagatti/auto-session",
config = function()
require("config.autosession")
end,
},
{
"olimorris/onedarkpro.nvim",
priority = 1000,
config = function()
require("config.themelight")
end,
},
{
"nvim-telescope/telescope.nvim",
dependencies = {
@@ -84,9 +60,6 @@ return {
require("config.modicator")
end
},
{
"shinchu/lightline-gruvbox.vim",
},
{
"jiaoshijie/undotree",
config = function()
@@ -142,17 +115,6 @@ return {
{
require("config.snacks")
},
{
"notken12/base46-colors",
},
-- {
-- "mason-org/mason-lspconfig.nvim",
-- opts = {},
-- dependencies = {
-- { "mason-org/mason.nvim", opts = {} },
-- "neovim/nvim-lspconfig",
-- },
-- },
{
"folke/lazydev.nvim",
ft = "lua",
@@ -166,28 +128,23 @@ return {
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",
-- "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,
tab_completion = true,
},
},
-- {
-- "smolck/command-completion.nvim",
-- opts = {
-- border = nil,
-- highlight_selection = true,
-- use_matchfuzzy = true,
-- tab_completion = true,
-- },
-- },
{
"andweeb/presence.nvim",
},
@@ -204,12 +161,12 @@ return {
require("config.harpoon")
end,
},
{
"catgoose/nvim-colorizer.lua",
config = function()
require("config.colorizer")
end,
},
-- {
-- "catgoose/nvim-colorizer.lua",
-- config = function()
-- require("config.colorizer")
-- end,
-- },
{
"ziglang/zig.vim",
},
@@ -274,12 +231,6 @@ return {
}),
}
},
-- {
-- "aserowy/tmux.nvim",
-- config = function()
-- require("config.tmux")
-- end,
-- },
{
"aznhe21/actions-preview.nvim",
config = function()
@@ -319,4 +270,13 @@ return {
{
require("config.dropbar")
},
{
require("config.blink")
},
{
"lewis6991/gitsigns.nvim",
config = function()
require("config.gitsigns")
end,
},
}