From 5693b00490180aded4d5da5f80cb1bcdafecba6c Mon Sep 17 00:00:00 2001 From: Jarkko Linnanvirta Date: Sun, 3 Oct 2021 16:02:55 +0300 Subject: [PATCH] Initial commit. --- .obsidian/.gitignore | 8 +++++++ .obsidian/app.json | 6 +++++ .obsidian/community-plugins.json | 4 ++++ .obsidian/core-plugins.json | 9 ++++++++ .obsidian/hotkeys.json | 10 ++++++++ .obsidian/plugins/.gitignore | 5 ++++ .../plugins/table-editor-obsidian/data.json | 6 +++++ .../plugins/templater-obsidian/data.json | 23 +++++++++++++++++++ Assets/Templates/Header.template.md | 1 + Index.md | 0 Installation.md | 0 11 files changed, 72 insertions(+) create mode 100644 .obsidian/.gitignore create mode 100644 .obsidian/app.json create mode 100644 .obsidian/community-plugins.json create mode 100644 .obsidian/core-plugins.json create mode 100644 .obsidian/hotkeys.json create mode 100644 .obsidian/plugins/.gitignore create mode 100644 .obsidian/plugins/table-editor-obsidian/data.json create mode 100644 .obsidian/plugins/templater-obsidian/data.json create mode 100644 Assets/Templates/Header.template.md create mode 100644 Index.md create mode 100644 Installation.md diff --git a/.obsidian/.gitignore b/.obsidian/.gitignore new file mode 100644 index 0000000..69521dc --- /dev/null +++ b/.obsidian/.gitignore @@ -0,0 +1,8 @@ +# The workspace file changes so often that it should not be version controlled. Also, different users may have different preferences. +/workspace + +# Do not store theme files in git, as those are downloaded with a few clicks. +/themes + +# Let different users select their own appearance settings and css theme. +/appearance.json \ No newline at end of file diff --git a/.obsidian/app.json b/.obsidian/app.json new file mode 100644 index 0000000..fd397a6 --- /dev/null +++ b/.obsidian/app.json @@ -0,0 +1,6 @@ +{ + "spellcheck": true, + "readableLineLength": false, + "newFileLocation": "current", + "attachmentFolderPath": "Assets/Images" +} \ No newline at end of file diff --git a/.obsidian/community-plugins.json b/.obsidian/community-plugins.json new file mode 100644 index 0000000..7a996ee --- /dev/null +++ b/.obsidian/community-plugins.json @@ -0,0 +1,4 @@ +[ + "table-editor-obsidian", + "templater-obsidian" +] \ No newline at end of file diff --git a/.obsidian/core-plugins.json b/.obsidian/core-plugins.json new file mode 100644 index 0000000..4a0847c --- /dev/null +++ b/.obsidian/core-plugins.json @@ -0,0 +1,9 @@ +[ + "file-explorer", + "global-search", + "switcher", + "page-preview", + "command-palette", + "open-with-default-app", + "file-recovery" +] \ No newline at end of file diff --git a/.obsidian/hotkeys.json b/.obsidian/hotkeys.json new file mode 100644 index 0000000..7f5636a --- /dev/null +++ b/.obsidian/hotkeys.json @@ -0,0 +1,10 @@ +{ + "app:reload": [ + { + "modifiers": [ + "Mod" + ], + "key": "R" + } + ] +} \ No newline at end of file diff --git a/.obsidian/plugins/.gitignore b/.obsidian/plugins/.gitignore new file mode 100644 index 0000000..6be275b --- /dev/null +++ b/.obsidian/plugins/.gitignore @@ -0,0 +1,5 @@ +# First everything from subdirectories +/*/* + +# Then unignore data.json files +!/*/data.json \ No newline at end of file diff --git a/.obsidian/plugins/table-editor-obsidian/data.json b/.obsidian/plugins/table-editor-obsidian/data.json new file mode 100644 index 0000000..9009465 --- /dev/null +++ b/.obsidian/plugins/table-editor-obsidian/data.json @@ -0,0 +1,6 @@ +{ + "formatType": "normal", + "showRibbonIcon": true, + "bindEnter": true, + "bindTab": true +} \ No newline at end of file diff --git a/.obsidian/plugins/templater-obsidian/data.json b/.obsidian/plugins/templater-obsidian/data.json new file mode 100644 index 0000000..3f0e551 --- /dev/null +++ b/.obsidian/plugins/templater-obsidian/data.json @@ -0,0 +1,23 @@ +{ + "command_timeout": 5, + "templates_folder": "Assets/Templates", + "templates_pairs": [], + "trigger_on_file_creation": true, + "enable_system_commands": true, + "shell_path": "", + "user_scripts_folder": "", + "enable_folder_templates": true, + "folder_templates": [ + { + "folder": "", + "template": "" + } + ], + "syntax_highlighting": true, + "enabled_templates_hotkeys": [ + "" + ], + "startup_templates": [ + "" + ] +} \ No newline at end of file diff --git a/Assets/Templates/Header.template.md b/Assets/Templates/Header.template.md new file mode 100644 index 0000000..ee9808d --- /dev/null +++ b/Assets/Templates/Header.template.md @@ -0,0 +1 @@ +aaaaaa \ No newline at end of file diff --git a/Index.md b/Index.md new file mode 100644 index 0000000..e69de29 diff --git a/Installation.md b/Installation.md new file mode 100644 index 0000000..e69de29