aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkrolxon <krolyxon@tutanota.com>2026-01-13 13:08:28 +0530
committerkrolxon <krolyxon@tutanota.com>2026-01-13 13:08:28 +0530
commit15264a6db2a2f5f019af989b69d7e0a80625bdca (patch)
tree8af2f5d12624c1da0f53390910f83f56c9ae06c2
parent549d1213f5a8c805db77488cf37de3b11a5e814d (diff)
nvim: use pywal colorscheme using neopywal
-rw-r--r--.config/nvim/lazy-lock.json1
-rw-r--r--.config/nvim/lua/plugins/colorscheme.lua46
2 files changed, 40 insertions, 7 deletions
diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json
index 454f406..c5576e1 100644
--- a/.config/nvim/lazy-lock.json
+++ b/.config/nvim/lazy-lock.json
@@ -23,6 +23,7 @@
"mini.hipatterns": { "branch": "main", "commit": "add8d8abad602787377ec5d81f6b248605828e0f" },
"mini.icons": { "branch": "main", "commit": "ff2e4f1d29f659cc2bad0f9256f2f6195c6b2428" },
"mini.pairs": { "branch": "main", "commit": "d5a29b6254dad07757832db505ea5aeab9aad43a" },
+ "neopywal": { "branch": "master", "commit": "09188d79b45694141ec779d05cbcc75f994639d1" },
"noice.nvim": { "branch": "main", "commit": "7bfd942445fb63089b59f97ca487d605e715f155" },
"nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" },
"nvim-lint": { "branch": "master", "commit": "c47b71d146a0b638f46672e6704c322369385df6" },
diff --git a/.config/nvim/lua/plugins/colorscheme.lua b/.config/nvim/lua/plugins/colorscheme.lua
index ebdab3a..04d8759 100644
--- a/.config/nvim/lua/plugins/colorscheme.lua
+++ b/.config/nvim/lua/plugins/colorscheme.lua
@@ -1,12 +1,44 @@
return {
- {
- "folke/tokyonight.nvim",
- opts = {
- transparent = true,
- styles = {
- sidebars = "transparent",
- floats = "transparent",
+ -- {
+ -- "folke/tokyonight.nvim",
+ -- opts = {
+ -- transparent = true,
+ -- styles = {
+ -- sidebars = "transparent",
+ -- floats = "transparent",
+ -- },
+ -- },
+ -- },
+
+ "RedsXDD/neopywal.nvim",
+ name = "neopywal",
+ lazy = false,
+ priority = 1000,
+ opts = {
+ transparent_background = true,
+ plugins = {
+ alpha = true,
+ dashboard = false,
+ git_gutter = true,
+ indent_blankline = true,
+ lazy = true,
+ lazygit = true,
+ noice = false,
+ notify = true,
+ nvim_cmp = true,
+ mini = {
+ hipatterns = true,
+ indentscope = {
+ enabled = false,
+ },
+ pick = true,
+ starter = true,
},
},
},
+
+ config = function(_, opts)
+ require("neopywal").setup(opts)
+ vim.cmd.colorscheme("neopywal")
+ end,
}