nvim: split ui-related plugins into separate file

This commit is contained in:
insects 2025-04-11 11:58:36 +02:00
parent 5678612f32
commit 8b8d17a64c
2 changed files with 53 additions and 8 deletions

View file

@ -1,14 +1,6 @@
-- Base plugins and libraries -- Base plugins and libraries
return { return {
{
"catppuccin/nvim",
priority = 1000,
lazy = false,
config = function()
vim.cmd([[colorscheme catppuccin-mocha]])
end,
},
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
{ {
"folke/snacks.nvim", "folke/snacks.nvim",

View file

@ -0,0 +1,53 @@
-- Stuff that makes Neovim look nicer
return {
{
"catppuccin/nvim",
priority = 1000,
lazy = false,
config = function()
vim.cmd([[colorscheme catppuccin-mocha]])
end,
},
{
"sschleemilch/slimline.nvim",
opts = {
style = "fg",
bold = true,
hl = {
secondary = "Comment",
},
configs = {
mode = {
hl = {
normal = "Comment",
insert = "Normal",
pending = "Normal",
visual = "Normal",
command = "Normal",
},
},
path = {
hl = {
primary = "Label",
},
},
git = {
hl = {
primary = "Function",
},
},
diagnostics = {
hl = {
primary = "Statement",
},
},
filetype_lsp = {
hl = {
primary = "String",
},
},
},
},
},
}