From 8a2e1006b3b272126332aa064f3ad95387129544 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Thu, 13 Feb 2025 14:13:49 +0530 Subject: new dot files --- .config/nvim/pywal/README.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .config/nvim/pywal/README.md (limited to '.config/nvim/pywal/README.md') diff --git a/.config/nvim/pywal/README.md b/.config/nvim/pywal/README.md new file mode 100644 index 0000000..bbb22db --- /dev/null +++ b/.config/nvim/pywal/README.md @@ -0,0 +1,38 @@ +

Base46: Pywal Edition

+ +

Pywal and Matugen support for NvChad!

+ +> [!NOTE] +> Support for Pywal requires these Python libraries to be installed: +> - `pywal` +> - `watchdog` + +## Installation +```bash +cd ~/.config/nvim +git clone https://github.com/NvChad/pywal +``` +Add this at the end of your `init.lua` file: +```lua +os.execute("python ~/.config/nvim/pywal/chadwal.py &> /dev/null &") + +local autocmd = vim.api.nvim_create_autocmd + +autocmd("Signal", { + pattern = "SIGUSR1", + callback = function() + require('nvchad.utils').reload() + end +}) +``` +Now you need to generate your Pywal theme again using `wal -i `. If not, `chadwal` will default to `gruvchad` colors. + +### Matugen support +Add this line to the `[templates]` section of your `~/.config/matugen/config.toml` file: +``` +nvim = { input_path = '~/.config/nvim/pywal/matugen.lua', output_path = '~/.cache/wal/base46-dark.lua' } +``` + +Select `chadwal` theme and enjoy! +## Demo +https://github.com/user-attachments/assets/933c97f2-4566-406c-8c04-e2e9f0f3f6da -- cgit v1.2.3-59-g8ed1b