We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Currently when lazy loading the plugin the color does not get applied. This is because this is propagated by an autocommand.
Example config: (comment out -- lazy = false --> colorworks, commented out it does not.)
{ "supermaven-inc/supermaven-nvim", -- lazy = false, event = "VeryLazy", config = function() require("supermaven-nvim").setup({ keymaps = { accept_suggestion = "<C-;>", clear_suggestion = "<C-/>", accept_word = "<C-.>", }, color = { suggestion_color = "#ffffff", cterm = 244, }, }) end, },
This could be easily fixed by adding an extra call to setup the colorscheme here:
supermaven-nvim/lua/supermaven-nvim/document_listener.lua
Line 43 in ef3bd1a
The text was updated successfully, but these errors were encountered:
fix(supermaven-inc#52): Set the colorscheme when lazyloading the plugin
1b401b7
ba52d3d
Successfully merging a pull request may close this issue.
Hi,
Currently when lazy loading the plugin the color does not get applied.
This is because this is propagated by an autocommand.
Example config:
(comment out -- lazy = false --> colorworks, commented out it does not.)
This could be easily fixed by adding an extra call to setup the colorscheme here:
supermaven-nvim/lua/supermaven-nvim/document_listener.lua
Line 43 in ef3bd1a
The text was updated successfully, but these errors were encountered: