From 7b47d01461386b688dadd387f758dab5d5767c0a Mon Sep 17 00:00:00 2001 From: jabuxas Date: Thu, 19 Dec 2024 13:53:15 -0300 Subject: [PATCH] feat: add rose theme and journaling --- lua/custom/plugins/colorscheme.lua | 15 +++++++++++++++ lua/custom/plugins/journal.lua | 13 +++++++++++++ lua/custom/plugins/smear_cursor.lua | 20 ++++++++++---------- 3 files changed, 38 insertions(+), 10 deletions(-) create mode 100644 lua/custom/plugins/journal.lua diff --git a/lua/custom/plugins/colorscheme.lua b/lua/custom/plugins/colorscheme.lua index 0f78454..dd398d7 100644 --- a/lua/custom/plugins/colorscheme.lua +++ b/lua/custom/plugins/colorscheme.lua @@ -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", diff --git a/lua/custom/plugins/journal.lua b/lua/custom/plugins/journal.lua new file mode 100644 index 0000000..2a8cbb3 --- /dev/null +++ b/lua/custom/plugins/journal.lua @@ -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, +} diff --git a/lua/custom/plugins/smear_cursor.lua b/lua/custom/plugins/smear_cursor.lua index a3dbe40..f302da3 100644 --- a/lua/custom/plugins/smear_cursor.lua +++ b/lua/custom/plugins/smear_cursor.lua @@ -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 + -- }, }