mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
startify: fix bookmarks
This commit is contained in:
parent
29c4274c66
commit
0ca819eca4
2 changed files with 2 additions and 2 deletions
|
@ -92,7 +92,7 @@ rec {
|
|||
(if val == false then 0 else 1)
|
||||
else val;
|
||||
|
||||
mkDefaultOpt = { type, global, description ? null, example ? null, default ? null, value ? v: toLuaObject (globalVal v), ... }: {
|
||||
mkDefaultOpt = { type, global, description ? null, example ? null, default ? null, value ? v: (globalVal v), ... }: {
|
||||
option = mkOption {
|
||||
type = types.nullOr type;
|
||||
default = default;
|
||||
|
|
|
@ -57,7 +57,7 @@ mkPlugin args {
|
|||
global = "startify_files_number";
|
||||
type = types.int;
|
||||
};
|
||||
|
||||
|
||||
updateOldFiles = mkDefaultOpt {
|
||||
description = "Update v:oldfiles on-the-fly, so that :Startify is always up-to-date";
|
||||
global = "startify_update_oldfiles";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue