feat: add rose theme and journaling
This commit is contained in:
parent
e34c928b4c
commit
7b47d01461
@ -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
|
elseif fileContent == "forest" then
|
||||||
colorscheme = {
|
colorscheme = {
|
||||||
"neanias/everforest-nvim",
|
"neanias/everforest-nvim",
|
||||||
|
13
lua/custom/plugins/journal.lua
Normal file
13
lua/custom/plugins/journal.lua
Normal 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,
|
||||||
|
}
|
@ -1,12 +1,12 @@
|
|||||||
return {
|
return {
|
||||||
"sphamba/smear-cursor.nvim",
|
-- "sphamba/smear-cursor.nvim",
|
||||||
opts = {
|
-- opts = {
|
||||||
legacy_computing_symbols_support = true,
|
-- legacy_computing_symbols_support = true,
|
||||||
transparent_bg_fallback_color = "#303030",
|
-- transparent_bg_fallback_color = "#303030",
|
||||||
stiffness = 0.8, -- 0.6 [0, 1]
|
-- stiffness = 0.8, -- 0.6 [0, 1]
|
||||||
trailing_stiffness = 0.6, -- 0.3 [0, 1]
|
-- trailing_stiffness = 0.6, -- 0.3 [0, 1]
|
||||||
trailing_exponent = 0, -- 0.1 >= 0
|
-- trailing_exponent = 0, -- 0.1 >= 0
|
||||||
distance_stop_animating = 0.5, -- 0.1 > 0
|
-- distance_stop_animating = 0.5, -- 0.1 > 0
|
||||||
hide_target_hack = false, -- true boolean
|
-- hide_target_hack = false, -- true boolean
|
||||||
},
|
-- },
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user