AlphaTechnolog / pywal.nvim

pywal.nvim is a reimplementation of pywal.vim to support a few lua plugins like nvim-tree, telescope, bufferline, etc
123 stars 27 forks source link

Commented lines and highlight color when pressing 'V' are the same #3

Closed zakissimo closed 2 years ago

zakissimo commented 2 years ago

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.

2022-02-08-175538_532x154_scrot

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

AlphaTechnolog commented 2 years ago

Oh sure, Thank you for use pywal.nvim :D

You are using treesitter? Or are using the native neovim syntax highlighting?

AlphaTechnolog commented 2 years ago

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)

tree

AlphaTechnolog commented 2 years ago

The same with Telescope, I will checkout it highlights and some options to modify the aspect of it :)

zakissimo commented 2 years ago

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.

AlphaTechnolog commented 2 years ago

Thank you for the collaboration, I push a commit that solve this problem in main :D update the plugin :)

comments

AlphaTechnolog commented 2 years ago

I push another commit that solves the problem with the Telescope border in main branch, update the plugin :D

telescope

AlphaTechnolog commented 2 years ago

Closing because the problems are solved for me, if you have any problem, please let me know it (reopen the issue)