mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 09:14:31 +02:00
plugins: fix "int flag" style options
This commit is contained in:
parent
555035ef79
commit
ec61ca9b08
27 changed files with 168 additions and 168 deletions
|
@ -28,14 +28,14 @@ helpers.vim-plugin.mkVimPlugin {
|
|||
maintainers = [ maintainers.GaetanLepage ];
|
||||
|
||||
settingsOptions = {
|
||||
no_default_key_mappings = helpers.defaultNullOpts.mkBool false ''
|
||||
no_default_key_mappings = helpers.defaultNullOpts.mkFlagInt 0 ''
|
||||
Whether to disable the default mappings.
|
||||
'';
|
||||
};
|
||||
|
||||
settingsExample = {
|
||||
no_default_key_mappings = true;
|
||||
no_tex_ftplugin = true;
|
||||
no_vim_ftplugin = true;
|
||||
no_default_key_mappings = 1;
|
||||
no_tex_ftplugin = 1;
|
||||
no_vim_ftplugin = 1;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue