-
-
Notifications
You must be signed in to change notification settings - Fork 58
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
feat: add multicursors-nvim plugin #610
base: main
Are you sure you want to change the base?
Conversation
multicursors-nvim with hydra dependency and static config.
options.vim.hydra = { | ||
enable = mkEnableOption "Creating custom submodes and menus [nvimtools/hydra.nvim]"; | ||
}; |
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.
options.vim.hydra = { | |
enable = mkEnableOption "Creating custom submodes and menus [nvimtools/hydra.nvim]"; | |
}; | |
options.vim.utility.hydra = { | |
enable = mkEnableOption "utility for creating custom submodes and menus [nvimtools/hydra.nvim]"; | |
}; |
It's better to have plugins under specific categories instead polluting top-level vim.*
. You'll also want to move this under plugins/utility.
setupOpts = { | ||
debug = false; | ||
exit = false; | ||
foreign_keys = null; | ||
color = "red"; | ||
timeout = false; | ||
invoke_on_body = false; | ||
hint = { | ||
show_name = true; | ||
position = "bottom"; | ||
offset = 0; | ||
float_opts = {}; | ||
}; | ||
on_enter = null; | ||
on_exit = null; | ||
on_key = null; | ||
}; |
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.
Is there are a reason we're shipping those defaults? Does the plugin not set any defaults, or are the defaults unergonomic?
|
||
[jahanson](https://github.com/jahanson): | ||
|
||
- Add [multicursors.nvim](https://github.com/smoka7/multicursors.nvim) to |
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.
Worth mentioning the addition of the hydra.nvim
dependency here`
multicursors-nvim
with hydra dependency and config.Added plugin and config for https://github.com/smoka7/multicursors.nvim
Sanity Checking
nix fmt
)If new changes are particularly complex:[ ] My code includes comments in particularly complex areas[ ] I have added a section in the manual[ ] (For breaking changes) I have included a migration guide.#nix
(default package).#maximal
.#docs-html
(manual, must build)x86_64-linux
aarch64-linux
x86_64-darwin
aarch64-darwin
Add a 👍 reaction to pull requests you find important.