Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial commit for Obsidian Vault with UX and RE work, screen designs and discussions #265

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,7 @@ thumbs.db
.electron-vendors.cache.json
/tsconfig.node.tsbuildinfo
/tsconfig.web.tsbuildinfo
debug.log
debug.log

#Obsidian workspace file
obsidian/.obsidian/workspace.json
11 changes: 11 additions & 0 deletions obsidian/.obsidian/app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"promptDelete": false,
"alwaysUpdateLinks": true,
"defaultViewMode": "preview",
"autoPairBrackets": false,
"autoPairMarkdown": false,
"useTab": false,
"showRibbon": false,
"showUnsupportedFiles": true,
"attachmentFolderPath": "Files"
}
7 changes: 7 additions & 0 deletions obsidian/.obsidian/appearance.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"cssTheme": "Minimal",
"monospaceFontFamily": "Source Code Pro",
"textFontFamily": "Exo 2",
"interfaceFontFamily": "Poppins",
"baseFontSize": 20
}
6 changes: 6 additions & 0 deletions obsidian/.obsidian/community-plugins.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
"obsidian-diagrams-net",
"obsidian-kanban",
"obsidian-minimal-settings",
"obsidian-style-settings"
]
30 changes: 30 additions & 0 deletions obsidian/.obsidian/core-plugins-migration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"canvas": true,
"outgoing-link": true,
"tag-pane": false,
"properties": false,
"page-preview": true,
"daily-notes": false,
"templates": false,
"note-composer": true,
"command-palette": true,
"slash-command": true,
"editor-status": true,
"bookmarks": true,
"markdown-importer": true,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": false,
"publish": false,
"sync": false
}
18 changes: 18 additions & 0 deletions obsidian/.obsidian/core-plugins.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[
"file-explorer",
"global-search",
"switcher",
"graph",
"backlink",
"canvas",
"outgoing-link",
"page-preview",
"note-composer",
"command-palette",
"slash-command",
"editor-status",
"bookmarks",
"markdown-importer",
"outline",
"word-count"
]
22 changes: 22 additions & 0 deletions obsidian/.obsidian/graph.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"collapse-filter": true,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 1,
"close": true
}
110 changes: 110 additions & 0 deletions obsidian/.obsidian/hotkeys.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
{
"editor:swap-line-down": [
{
"modifiers": [
"Mod",
"Shift"
],
"key": "ArrowDown"
}
],
"editor:swap-line-up": [
{
"modifiers": [
"Mod",
"Shift"
],
"key": "ArrowUp"
}
],
"app:toggle-left-sidebar": [
{
"modifiers": [],
"key": "F4"
}
],
"app:toggle-right-sidebar": [
{
"modifiers": [
"Mod"
],
"key": "F4"
}
],
"file-explorer:new-file-in-new-pane": [],
"canvas:new-file": [
{
"modifiers": [
"Mod",
"Shift"
],
"key": "N"
}
],
"obsidian-kanban:create-new-kanban-board": [
{
"modifiers": [
"Alt",
"Mod"
],
"key": "N"
}
],
"workspace:close-window": [
{
"modifiers": [
"Mod"
],
"key": "Q"
}
],
"workspace:close-others": [
{
"modifiers": [
"Mod",
"Shift"
],
"key": "W"
}
],
"app:open-settings": [
{
"modifiers": [],
"key": "F10"
}
],
"omnisearch:show-modal": [
{
"modifiers": [
"Alt",
"Mod"
],
"key": "F"
}
],
"switcher:open": [
{
"modifiers": [
"Mod"
],
"key": "Tab"
}
],
"workspace:next-tab": [
{
"modifiers": [
"Ctrl"
],
"key": "PageDown"
}
],
"workspace:previous-tab": [
{
"modifiers": [
"Ctrl"
],
"key": "PageUp"
}
],
"table-editor-obsidian:table-control-bar": []
}
Loading