Merge pull request #97 from Amanse/obsidian-daily

feat: add daily note options for obsidian
This commit is contained in:
NotAShelf 2023-07-20 22:33:03 +03:00 committed by GitHub
commit deab06eba2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 0 deletions

View file

@ -11,3 +11,7 @@ https://github.com/horriblename[horriblename]:
* Add transparency support for tokyonight theme.
* Fix bug where cmp's close and scrollDocs mappings wasn't working.
https://github.com/amanse[amanse]:
* Add daily notes options for obsidian plugin

View file

@ -23,6 +23,18 @@ in {
if (auto.type == "nvim-cmp")
then "true"
else "false"
}
},
daily_notes = {
folder = ${
if (cfg.daily-notes.folder == "")
then "nil,"
else "'${cfg.daily-notes.folder}',"
}
date_format = ${
if (cfg.daily-notes.date-format == "")
then "nil,"
else "'${cfg.daily-notes.date-format}',"
}
}
})

View file

@ -14,6 +14,19 @@ with builtins; {
description = "Obsidian vault directory";
};
daily-notes = {
folder = mkOption {
type = types.str;
default = "";
description = "Directory in which daily notes should be created";
};
date-format = mkOption {
type = types.str;
default = "";
description = "Date format used for creating daily notes";
};
};
completion = {
nvim_cmp = mkOption {
# if using nvim-cmp, otherwise set to false