more colorscheme

This commit is contained in:
Daniel Fichtinger 2024-11-03 16:11:50 -05:00
parent 91f85807c5
commit 5a52e007ad
2 changed files with 9 additions and 0 deletions

View file

@ -1,6 +1,7 @@
return {
{ "nvim-neo-tree/neo-tree.nvim", enabled = false },
{ "folke/tokyonight.nvim", enabled = false },
-- { "folke/noice.nvim", enabled = false },
}
-- TODO:
-- figure out how to make markdown extra work together with Obsidian, disable it for now

View file

@ -16,6 +16,12 @@
-- #d4d4d4
local noiropts = {
-- preset = "miami-nights",
styles = {
italic = true,
bold = true,
underline = true,
undercurl = true,
},
colors = {
primary = "#994848",
secondary = "#933737",
@ -41,6 +47,8 @@ return {
"LazyVim/LazyVim",
opts = {
colorscheme = function()
-- local Color, colors, Group, groups, styles = require("colorbuddy").setup()
-- Group.new("SpellBad", colors.primary, nil, styles.undercurl + styles.italic)
require("noirbuddy").setup(noiropts)
end,
},