diff --git a/.config/matugen/config.toml b/.config/matugen/config.toml index 0b458f4..0174a98 100644 --- a/.config/matugen/config.toml +++ b/.config/matugen/config.toml @@ -37,3 +37,7 @@ post_hook = 'sed -i "s/|/{/g" ~/.config/oh-my-posh/config.omp.json && sed -i "s/ [templates.eww] input_path = './templates/colors.scss' output_path = '~/.config/eww/colors.scss' + +[templates.nvim-kolorz] +input_path = '~/.local/share/nvim/lazy/nvim-kolorz/lua/nvim-kolorz/colors_template.lua' +output_path = './results/colors.lua' diff --git a/.config/matugen/templates/colors.lua b/.config/matugen/templates/colors.lua new file mode 100644 index 0000000..78c78ba --- /dev/null +++ b/.config/matugen/templates/colors.lua @@ -0,0 +1,24 @@ +return { + -- Backgrounds & foregrounds + c_normal_fg = "#f2b3e5", + c_normal_bg = "#171216", + + -- Syntax groups + c_comment = "#4d1f48", + c_string = "#f5b8a6", + c_identifier = "#f2b3e5", + c_function = "#dbbed2", + c_statement = "#f2b3e5", + c_keyword = "#f2b3e5", + c_type = "#f2b3e5", + c_error = "#ffb4ab", + c_visual = "#f2b3e5", + + -- Line numbers + c_line_nr = "#4d1f48", + c_cursor_line_nr = "#f2b3e5", + + -- Statusline + c_status_line_fg = "#f2b3e5", + c_status_line_bg = "#171216", +} diff --git a/.config/nvim b/.config/nvim index ba5103f..a2a9ca2 160000 --- a/.config/nvim +++ b/.config/nvim @@ -1 +1 @@ -Subproject commit ba5103f6968698a9c3b6c870bd8a30e27a46e996 +Subproject commit a2a9ca2fc6c1e6033dc5f5d8a1f4f2ec92250433 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d4fa04d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.config/matugen/results