foam settings

This commit is contained in:
2021-02-26 20:21:53 +01:00
parent acf3885f85
commit 3003feca28
3 changed files with 27 additions and 4 deletions
+5
View File
@@ -0,0 +1,5 @@
# Agora Algorithm
- https://twitter.com/flancian/status/1365358298308952072
- https://twitter.com/plantey__/status/1365371995672760327
+13 -4
View File
@@ -1,10 +1,18 @@
# Foam Settings
- These are my [[foam]] ([[vscode]]) settings as of [[2021-01-13]]:
- ```"foam.openDailyNote.directory": "journal"``` in the workspace's settings.json to create daily notes in journal/, example:
- <https://github.com/flancian/garden/blob/master/.vscode/settings.json>
- ``` "vscodeMarkdownNotes.newNoteDirectory": "WORKSPACE_ROOT"``` also, to make it so that notes created by following links from the daily note (alt-d) are created in the root instead of the journal/ directory.
- A commit.txt in the repo for [[auto commit messages]], plus one-time setup with git config (see note), if you don't want to have to write commit messages when updating the [[agora]].
- [[push]] [[settings.json]]:
```
"foam.openDailyNote.directory": "journal"
"vscodeMarkdownNotes.newNoteDirectory": "WORKSPACE_ROOT"
```
- [[push]] [[commit.txt]]:
```
Auto: misc.
```
- A commit.txt in the repo for [[auto commit messages]], plus one-time setup with git config (see note), if you don't want to have to write commit messages when updating the [[agora]].
- The following in ```.config/Code/User/keybindings.json``` (this has to be set on a global basis due to [[vscode]] limitations):
```
[
@@ -40,6 +48,7 @@
[foam]: foam "Foam"
[vscode]: vscode "Vscode"
[2021-01-13]: journal/2021-01-13 "2021-01-13"
[push]: push "Push"
[auto commit messages]: auto-commit-messages "Auto Commit Messages"
[agora]: agora "Agora"
[//end]: # "Autogenerated link references"
+9
View File
@@ -0,0 +1,9 @@
# Git Alias
```
$ git config --global alias.co checkout
$ git config --global alias.br branch
$ git config --global alias.ci commit
$ git config --global alias.st status
```