Closed LintaoAmons closed 9 months ago
There isn't a "built in way" to accomplish this. You could just disable it immediately after setup though
{
{
"miversen33/sunglasses.nvim",
config = function()
local sunglasses_options = {
filter_percent = 0.65,
filter_type = "NOSYNTAX"
},
require("sunglasses").setup(sunglasses_options)
vim.cmd(':SunglassesDisable')
end
}
}
Would that work? If not, I would be open to a PR adding some way of preventing the auto disabling of sunglasses :)
Thanks, yes, it works~
Here's my current config, but it will start the sunglasses when I enter nvim.
So I actually want it do not take effect at the very beginning.