You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was using kitty opacity 0.75 and nvim didn't follow this opacity which was fine for me. After #786 if I want to revert to the old behavior, the option for that seems to be missing. I tried using transparent_background=false but that only reverts colors for plugins and not the main editor itself. Also, I'd appreciate some help on how to set LSP hover info box border with transparent_background enabled as it's not present atm. The black color for LSP info is also not ideal. I'd like to shift to this new transparent theme but the two issues above preventing me for doing so right now.
Setting transparent_background = false should prevent catppuccin from following kitty's opacity
Actual behavior
Setting transparent_background = false only resets colors for plugins, not the main editor itself.
Repro
-- DO NOT change the paths and don't remove the colorschemelocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath })
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"catppuccin/nvim",
-- add any other plugins here
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("catppuccin")
-- add anything else here
The text was updated successfully, but these errors were encountered:
As suggested in the discord server, I also tried setting kitty = false but that also doesn't do anything. Also, I encountered a weird bug when opening oil.nvim during the landing page. Somehow there's some new weird lines appearing. It maybe an issue with oil.nvim I'm not entirely sure.
Ignore my comments below, I believe our PR should be reverted. I'll get around to this in the morning, sorry for the hassle!
If I'm understanding this correctly, we merged #786 to only adjust the colour channels (and therefore workaround the kitty issue documented in the source code) if kitty is true and if transparent_background is true.
Could you try setting both those to true in your configuration and see what results you get?
Please let me know if I'm still misunderstanding your issue and what you want to achieve.
Description
I was using kitty opacity 0.75 and nvim didn't follow this opacity which was fine for me. After #786 if I want to revert to the old behavior, the option for that seems to be missing. I tried using
transparent_background=false
but that only reverts colors for plugins and not the main editor itself. Also, I'd appreciate some help on how to set LSP hover info box border withtransparent_background
enabled as it's not present atm. The black color for LSP info is also not ideal. I'd like to shift to this new transparent theme but the two issues above preventing me for doing so right now.transparent_background
enabledtransparent_background
disabledNeovim version
Terminal and multiplexer
kitty 0.36.4 with tmux 3.5a
Catppuccin version / branch / rev
cf021eb
Steps to reproduce
nvim -u repro.lua
Expected behavior
Setting
transparent_background = false
should prevent catppuccin from following kitty's opacityActual behavior
Setting
transparent_background = false
only resets colors for plugins, not the main editor itself.Repro
The text was updated successfully, but these errors were encountered: