From c24f974e8d829896cdbd6118ea8803772d61a75e Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Sat, 1 Feb 2025 13:02:38 +0000 Subject: [PATCH 1/2] feat(nvim): add moar colorschemes Add `monoglow` and `ash` colorschemes as dependencies from `tokyonight`. For now using the `ash` colorscheme. --- patch/kickstart.nvim/updates.patch | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/patch/kickstart.nvim/updates.patch b/patch/kickstart.nvim/updates.patch index 8151cd0..f7543a1 100644 --- a/patch/kickstart.nvim/updates.patch +++ b/patch/kickstart.nvim/updates.patch @@ -1,5 +1,5 @@ diff --git a/init.lua b/init.lua -index 4eae8e7..ab4f5f6 100644 +index 4eae8e7..8331cde 100644 --- a/init.lua +++ b/init.lua @@ -91,7 +91,7 @@ vim.g.mapleader = ' ' @@ -134,7 +134,26 @@ index 4eae8e7..ab4f5f6 100644 require('lspconfig')[server_name].setup(server) end, }, -@@ -902,7 +984,39 @@ require('lazy').setup({ +@@ -844,12 +926,17 @@ require('lazy').setup({ + -- + -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. + 'folke/tokyonight.nvim', ++ dependencies = { ++ 'drewxs/ash.nvim', ++ 'wnkz/monoglow.nvim', ++ }, + priority = 1000, -- Make sure to load this before all the other start plugins. + init = function() + -- Load the colorscheme here. + -- Like many other themes, this one has different styles, and you could load + -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. +- vim.cmd.colorscheme 'tokyonight-night' ++ -- vim.cmd.colorscheme 'tokyonight-night' ++ vim.cmd.colorscheme 'ash' + + -- You can configure highlights by doing something like: + vim.cmd.hi 'Comment gui=none' +@@ -902,7 +989,39 @@ require('lazy').setup({ main = 'nvim-treesitter.configs', -- Sets main module to use for opts -- [[ Configure Treesitter ]] See `:help nvim-treesitter` opts = { @@ -175,7 +194,7 @@ index 4eae8e7..ab4f5f6 100644 -- Autoinstall languages that are not installed auto_install = true, highlight = { -@@ -932,17 +1046,17 @@ require('lazy').setup({ +@@ -932,17 +1051,17 @@ require('lazy').setup({ -- Uncomment any of the lines below to enable them (you will need to restart nvim). -- -- require 'kickstart.plugins.debug', -- 2.47.2 From 89e61f30dab93622718e53b28e5001cf253eff1f Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Sun, 9 Feb 2025 20:04:39 +0000 Subject: [PATCH 2/2] chore(neovim): add variants for `monoglow` colorscheme --- patch/kickstart.nvim/updates.patch | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/patch/kickstart.nvim/updates.patch b/patch/kickstart.nvim/updates.patch index f7543a1..3218611 100644 --- a/patch/kickstart.nvim/updates.patch +++ b/patch/kickstart.nvim/updates.patch @@ -1,5 +1,5 @@ diff --git a/init.lua b/init.lua -index 4eae8e7..8331cde 100644 +index 4eae8e7..b9f7554 100644 --- a/init.lua +++ b/init.lua @@ -91,7 +91,7 @@ vim.g.mapleader = ' ' @@ -134,7 +134,7 @@ index 4eae8e7..8331cde 100644 require('lspconfig')[server_name].setup(server) end, }, -@@ -844,12 +926,17 @@ require('lazy').setup({ +@@ -844,12 +926,19 @@ require('lazy').setup({ -- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. 'folke/tokyonight.nvim', @@ -148,12 +148,14 @@ index 4eae8e7..8331cde 100644 -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-night' ++ -- For monoglow the following variants area available: ++ -- 'monoglow-z', 'monoglow-lack', or 'monoglow-void'. + -- vim.cmd.colorscheme 'tokyonight-night' + vim.cmd.colorscheme 'ash' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none' -@@ -902,7 +989,39 @@ require('lazy').setup({ +@@ -902,7 +991,39 @@ require('lazy').setup({ main = 'nvim-treesitter.configs', -- Sets main module to use for opts -- [[ Configure Treesitter ]] See `:help nvim-treesitter` opts = { @@ -194,7 +196,7 @@ index 4eae8e7..8331cde 100644 -- Autoinstall languages that are not installed auto_install = true, highlight = { -@@ -932,17 +1051,17 @@ require('lazy').setup({ +@@ -932,17 +1053,17 @@ require('lazy').setup({ -- Uncomment any of the lines below to enable them (you will need to restart nvim). -- -- require 'kickstart.plugins.debug', -- 2.47.2