mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-21 11:14:40 +02:00
plugins: swith to the new behaviour of mkRaw
This commit is contained in:
parent
8cf2d943d2
commit
19f39c3b1b
32 changed files with 66 additions and 127 deletions
|
@ -381,12 +381,8 @@ in {
|
|||
use_default_keymaps = cfg.useDefaultKeymaps;
|
||||
view_options = with cfg.viewOptions; {
|
||||
show_hidden = showHidden;
|
||||
is_hidden_file =
|
||||
helpers.ifNonNull' isHiddenFile
|
||||
(helpers.mkRaw isHiddenFile);
|
||||
is_always_hidden =
|
||||
helpers.ifNonNull' isAlwaysHidden
|
||||
(helpers.mkRaw isAlwaysHidden);
|
||||
is_hidden_file = helpers.mkRaw isHiddenFile;
|
||||
is_always_hidden = helpers.mkRaw isAlwaysHidden;
|
||||
};
|
||||
float = with cfg.float; {
|
||||
inherit padding;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue