Fix Obsidian.nvim templates for daily notes
This commit is contained in:
parent
88bcb4dc5c
commit
6e4b916b81
|
@ -34,6 +34,7 @@ return {
|
|||
overrides = {
|
||||
daily_notes = {
|
||||
folder = "Daily",
|
||||
template = "Daily"
|
||||
},
|
||||
},
|
||||
})
|
||||
|
@ -49,6 +50,13 @@ return {
|
|||
daily_notes = {
|
||||
folder = "."
|
||||
},
|
||||
templates = {
|
||||
folder = (os.getenv "HOME") .. "/Workspace/Notes/Templates",
|
||||
-- date_format = "%Y-%m-%d",
|
||||
date_format = "%B %-d, %Y",
|
||||
time_format = "%H:%M",
|
||||
substitutions = {},
|
||||
},
|
||||
disable_frontmatter = true,
|
||||
ui = {
|
||||
hl_groups = {
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
PYTHONSTARTUP = "${config.xdg.configHome}/python/pythonrc";
|
||||
SQLITE_HISTORY = "${config.xdg.cacheHome}/sqlite_history";
|
||||
WINEPREFIX = "${config.xdg.dataHome}/wine";
|
||||
XDG_CURRENT_DESKTOP = "GNOME";
|
||||
# XDG_CURRENT_DESKTOP = "GNOME";
|
||||
OPENCV_LOG_LEVEL = "ERROR";
|
||||
COLORTERM = "truecolor";
|
||||
};
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
libreoffice
|
||||
telegram-desktop
|
||||
webcord
|
||||
devenv
|
||||
|
|
Loading…
Reference in New Issue