mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-12 18:24:35 +02:00
plugins/telescope: normalize plugin defaults
This commit is contained in:
parent
6ab2a39e6a
commit
66b23fff80
3 changed files with 27 additions and 35 deletions
|
@ -122,16 +122,14 @@ with lib;
|
|||
};
|
||||
|
||||
settingsOptions = {
|
||||
filetypes = helpers.defaultNullOpts.mkListOf types.str ''
|
||||
[
|
||||
"png"
|
||||
"jpg"
|
||||
"gif"
|
||||
"mp4"
|
||||
"webm"
|
||||
"pdf"
|
||||
]
|
||||
'' "Filetypes whitelist.";
|
||||
filetypes = helpers.defaultNullOpts.mkListOf types.str [
|
||||
"png"
|
||||
"jpg"
|
||||
"gif"
|
||||
"mp4"
|
||||
"webm"
|
||||
"pdf"
|
||||
] "Filetypes whitelist.";
|
||||
|
||||
find_cmd = helpers.defaultNullOpts.mkStr "fd" ''
|
||||
Which find command to use.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue