This commit is contained in:
2025-09-08 23:02:18 -04:00
parent 689666b522
commit a8f4c60dae
2 changed files with 4 additions and 1 deletions

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# vimtoday
A funny little ter,inal command that lets you open the obsidian daily note in vim!

View File

@@ -37,7 +37,7 @@ fn main() {
let today_date_str = format!("{}-{:02}-{:02}", today.year(), today.month(), today.day());
let file_path = format!("{}/{}/{}", &DAILY_FILEPATH, today.year(), &today_date_str);
let file_path = format!("{}/{}/{}.md", &DAILY_FILEPATH, today.year(), &today_date_str);
println!("vim {}", file_path);