-
-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
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
ui/edgy-nvim: init #380
base: main
Are you sure you want to change the base?
ui/edgy-nvim: init #380
Conversation
config = mkIf cfg.enable { | ||
vim = { | ||
startPlugins = ["edgy-nvim"]; | ||
pluginRC.edgy-nvim = entryBefore ["basic"] '' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is incorrect, pluginRC doesn't have a section called basic
. You can either:
- Use
entryAnywhere
, which should be fine - Put the variables in
luaConfigRC
instead, and changeentryBefore
toentryAfter
, since later takes precedence, and we want to be overriding the values in basic, if there are any.
-- Neovim options recommended by upstream. | ||
-- Views can only be fully collapsed with the global statusline. | ||
vim.o.laststatus = 3 | ||
-- Default splitting will cause your main splits to jump when opening an edgebar. | ||
-- To prevent this, set `splitkeep` to either `screen` or `topline`. | ||
vim.o.splitkeep = "screen" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not very important, but I'm not sure if comments are very useful/necessary in the generated lua file.
Adds support for edgy.nvim