nixvim/config/plugins/utils/obsidian.nix
Wael Nasreddine 0f42b0eebb
treewide: format all files (#57)
Run `nix fmt` at the root of the repository to format all files. I've
done this on my fork and this will help me merge your changes later
without having to deal with un-formatted files.
2024-11-26 09:47:49 +01:00

25 lines
495 B
Nix

{
plugins.obsidian = {
enable = false;
settings = {
workspaces = [
{
name = "SecondBrain";
path = "~/projects/personal/SecondBrain";
}
];
templates = {
subdir = "templates";
dateFormat = "%Y-%m-%d";
timeFormat = "%H:%M";
substitutions = { };
};
dailyNotes = {
folder = "0_Daily_Notes";
dateFormat = "%Y-%m-%d";
aliasFormat = "%B %-d, %Y";
};
};
};
}