Configure shit to work on Gitpod + VS Code setup w/o Obsidian

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
This commit is contained in:
~ajhalili2006 2023-08-04 01:14:06 +00:00
parent 8e93519e30
commit 6b1896eb57
3 changed files with 33 additions and 0 deletions

15
.gitpod.yml Normal file
View File

@ -0,0 +1,15 @@
vscode:
extensions:
- foam.foam-vscode
tasks:
- name: setup keys
before: |
if [[ ! -z $GNUPG ]]; then
cd ~
rm -rf .gnupg
echo $GNUPG | base64 -d | tar --no-same-owner -xzf -
fi
if [[ ! -z $SSH_PUBLIC_KEY ]] && [[ ! -z $SSH_PRIVATE_KEY ]]; then
# todo
fi

13
.markdownlint.yaml Normal file
View File

@ -0,0 +1,13 @@
$schema: https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json
default: true
MD003:
style: atx
MD007:
indent: 4
no-inline-html:
allowed_elements:
- br
- img
MD013:
line_length: 125
MD041: false

5
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"markdownlint.config": {
"extends": "../.markdownlint.yaml"
}
}