feat: add rose theme and journaling

This commit is contained in:
jabuxas 2024-12-19 13:53:15 -03:00
parent e34c928b4c
commit 7b47d01461
3 changed files with 38 additions and 10 deletions

View File

@ -89,6 +89,21 @@ elseif fileContent == "monochrome" then
}
},
}
elseif fileContent == "rose" then
colorscheme = {
'jesseleite/nvim-noirbuddy',
dependencies = {
{ 'tjdevries/colorbuddy.nvim' }
},
lazy = false,
priority = 1000,
opts = {
colors = {
primary = "#e57474",
secondary = "#c96666"
}
},
}
elseif fileContent == "forest" then
colorscheme = {
"neanias/everforest-nvim",

View File

@ -0,0 +1,13 @@
return {
"jakobkhansen/journal.nvim",
config = function()
require("journal").setup({
journal = {
format = '%Y/%m-%B-daily',
template = function()
return "# %Y %B %d"
end
}
})
end,
}

View File

@ -1,12 +1,12 @@
return {
"sphamba/smear-cursor.nvim",
opts = {
legacy_computing_symbols_support = true,
transparent_bg_fallback_color = "#303030",
stiffness = 0.8, -- 0.6 [0, 1]
trailing_stiffness = 0.6, -- 0.3 [0, 1]
trailing_exponent = 0, -- 0.1 >= 0
distance_stop_animating = 0.5, -- 0.1 > 0
hide_target_hack = false, -- true boolean
},
-- "sphamba/smear-cursor.nvim",
-- opts = {
-- legacy_computing_symbols_support = true,
-- transparent_bg_fallback_color = "#303030",
-- stiffness = 0.8, -- 0.6 [0, 1]
-- trailing_stiffness = 0.6, -- 0.3 [0, 1]
-- trailing_exponent = 0, -- 0.1 >= 0
-- distance_stop_animating = 0.5, -- 0.1 > 0
-- hide_target_hack = false, -- true boolean
-- },
}