aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins
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 /.config/nvim/lua/plugins
parent549d1213f5a8c805db77488cf37de3b11a5e814d (diff)
nvim: use pywal colorscheme using neopywal
Diffstat (limited to '.config/nvim/lua/plugins')
-rw-r--r--.config/nvim/lua/plugins/colorscheme.lua46
1 files changed, 39 insertions, 7 deletions
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,
}