Closed zakissimo closed 2 years ago
Oh sure, Thank you for use pywal.nvim :D
You are using treesitter? Or are using the native neovim syntax highlighting?
Unfortunatelly for now no, but I am working in some options to modify more the aspect of the theme :D
But, you can modify the highlights for the NvimTree, using this lua code:
local M = {}
local c = require('pywal.core').get_colors()
local hi = vim.highlight.create
-- change the colors as you want
hi('NvimTreeNormal', { guibg = c.color1, guifg = c.color7 }, false)
hi('NvimTreeNormalNC', { guibg = c.color1, guifg = c.color7 }, false)
hi('NvimTreeFolderIcon', { guibg = c.color1, guifg = c.color11 }, false)
The same with Telescope, I will checkout it highlights and some options to modify the aspect of it :)
Oh sure, Thank you for use pywal.nvim :D
You are using treesitter? Or are using the native neovim syntax highlighting?
Yes I'm using treesitter. Thanks for the feedback I'll try to tweak the config.lua if I find the courage.
Thank you for the collaboration, I push a commit that solve this problem in main :D update the plugin :)
I push another commit that solves the problem with the Telescope border in main branch, update the plugin :D
Closing because the problems are solved for me, if you have any problem, please let me know it (reopen the issue)
Thanks for the previous issue ;)
I noticed something else. As you can see below, the highlight color when selecting a line is the same of commented line of text rendering it invisible.
Also, I don't think the following deserves new issues open so I'll ask here: -Is there a way to color NvimTree background differently? -Not remove the frame around Telescope?
Thanks again