I am currently using the AlphaTechnology/pywal.nvim plugin in order to generate the colorscheme for my Neovim configuration. The only problem I have with this is that the .html
files lack much color and are quite bland. I want to be able to configure AlphaTechnology/pywal.nvim plugin so that I can alter the colors.
I looked into the .local/share/nvim/site/pack/packer/start/pywal/lua/pywal
directory on my local desktop. This is basically the lua/pywal
directory if you are looking directly on the AlphaTechnology/pywal.nvim
github repo. In this directory, there is a config.lua
file. This file basically contains all the colors as well as the associated groups. For example, this file contains the information that decides what color strings would be or what color booleans would be. One such property in this file is: -- TSTag = { }
which is basically the color that would appear for HTML tags when using treesitter (I always have treesitter enabled). As you can probably tell, this line is commented out. Therefore, I uncommented this line out and set it to a certain color, believing that setting that value would alter the color on the tags in .html
files. However, when I look back into my .html
files, there is no change.
I feel like I need to make some configurations in the pywal.lua
file in my .config
, but I am not exactly sure how I could do that (I am not very proficient in Lua and I am just learning along the way as I am configuring my Neovim and getting by).
So, any ideas and help as to how I can edit my colors in AlphaTechnology/pywal.nvim plugin would be appreciated.
Thank you.