mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 13:45:59 +01:00
99ace503ad
* plugins/lsp: add code-actions module; add fastaction.nvim * deprecate nvimCodeActionMenu * fastaction-nvim: move range_code_action to visual maps * fastaction: move to vim.ui, remove mappings, enable register_ui_select by default * fastaction: add missing documentation * fastaction: support vim.ui.borders * treewide: clean up nvim-code-action-menu remnants * docs: add missing section ids --------- Co-authored-by: NotAShelf <raf@notashelf.dev>
9 lines
278 B
Nix
9 lines
278 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
in {
|
|
options.vim.ui.fastaction = {
|
|
enable = mkEnableOption "overriding vim.ui.select with fastaction.nvim";
|
|
setupOpts = mkPluginSetupOption "fastaction" {};
|
|
};
|
|
}
|