mirror of
https://github.com/bramses/bramses-highly-opinionated-vault-2023.git
synced 2025-02-26 07:53:55 +00:00
vault backup: 2022-12-15 23:28:05
This commit is contained in:
515
.obsidian/plugins/obsidian-admonition/main.js
vendored
Normal file
515
.obsidian/plugins/obsidian-admonition/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-admonition/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-admonition/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-admonition",
|
||||
"name": "Admonition",
|
||||
"version": "9.0.5",
|
||||
"minAppVersion": "0.14.0",
|
||||
"description": "Enhanced callouts for Obsidian.md",
|
||||
"author": "Jeremy Valentine",
|
||||
"authorUrl": "",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
1
.obsidian/plugins/obsidian-admonition/styles.css
vendored
Normal file
1
.obsidian/plugins/obsidian-admonition/styles.css
vendored
Normal file
File diff suppressed because one or more lines are too long
6
.obsidian/plugins/obsidian-gallery/data.json
vendored
Normal file
6
.obsidian/plugins/obsidian-gallery/data.json
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"imgDataFolder": null,
|
||||
"galleryLoadPath": "/",
|
||||
"width": 400,
|
||||
"reverseDisplay": true
|
||||
}
|
||||
15210
.obsidian/plugins/obsidian-gallery/main.js
vendored
Normal file
15210
.obsidian/plugins/obsidian-gallery/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
10
.obsidian/plugins/obsidian-gallery/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-gallery/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-gallery",
|
||||
"name": "Gallery",
|
||||
"version": "0.5.8",
|
||||
"minAppVersion": "0.10.11",
|
||||
"description": "Main Gallery to tag / filter / add notes to images. Display blocks to embed images inside notes. Display block to an image information",
|
||||
"author": "darakah",
|
||||
"authorUrl": "https://github.com/Darakah/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
130
.obsidian/plugins/obsidian-gallery/styles.css
vendored
Normal file
130
.obsidian/plugins/obsidian-gallery/styles.css
vendored
Normal file
@@ -0,0 +1,130 @@
|
||||
.ob-gallery-control {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: unset;
|
||||
float: right;
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
.ob-gallery-display {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
float: left;
|
||||
background-color: var(--background-primary);
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.ob-gallery-filter {
|
||||
height: 70px;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
border: none;
|
||||
background-color: var(--background-secondary);
|
||||
border-radius: 5px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.ob-gallery-filter-input {
|
||||
width: 20%;
|
||||
left: 20px;
|
||||
position: static;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.ob-gallery-image-focus {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-color: rgb(16, 17, 17, 0.83);
|
||||
;
|
||||
}
|
||||
|
||||
.ob-gallery-image-focus>img {
|
||||
opacity: 1;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
max-height: 100%;
|
||||
display: block;
|
||||
padding: 40px;
|
||||
float: unset !important;
|
||||
}
|
||||
|
||||
.image-info-edit {
|
||||
position: fixed;
|
||||
right: 0px;
|
||||
margin: 10px;
|
||||
color: var(--text-normal) !important;
|
||||
}
|
||||
|
||||
.image-info-edit:hover {
|
||||
color: var(--text-a) !important;
|
||||
}
|
||||
|
||||
.image-info-open {
|
||||
position: fixed;
|
||||
right: 30px;
|
||||
top: 5px;
|
||||
color: var(--text-normal) !important;
|
||||
}
|
||||
|
||||
.image-info-open:hover {
|
||||
color: var(--text-a) !important;
|
||||
}
|
||||
|
||||
.gallery-span-info {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/* active-thumb View CSS */
|
||||
|
||||
.gallery-widget {
|
||||
background: var(--background-secondary);
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding-bottom: 60%;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
border-radius: 0px 0px 0px 0px;
|
||||
}
|
||||
|
||||
.gallery-container {
|
||||
max-width: auto;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.gallery-span-info br {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.gallery-grid-img {
|
||||
opacity: 0.9;
|
||||
transition: 0.1;
|
||||
}
|
||||
|
||||
.gallery-grid-img:hover {
|
||||
opacity: 1;
|
||||
transform: scale(1.04);
|
||||
}
|
||||
|
||||
.gallery-resources-alert {
|
||||
padding: 20px;
|
||||
background-color: var(--background-modifier-error-hover);
|
||||
color: var(--light0-hard);
|
||||
}
|
||||
|
||||
.ob-gallery-video-focus {
|
||||
opacity: 1;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
max-height: 100%;
|
||||
display: block;
|
||||
padding: 40px;
|
||||
float: unset !important;
|
||||
}
|
||||
@@ -4,6 +4,10 @@
|
||||
"basename": "README",
|
||||
"path": "README.md"
|
||||
},
|
||||
{
|
||||
"basename": "Hotkeys",
|
||||
"path": "_tutorial/Hotkeys.md"
|
||||
},
|
||||
{
|
||||
"basename": "Smartphone Capture",
|
||||
"path": "Inbox/Smartphone Capture/Smartphone Capture.md"
|
||||
@@ -40,10 +44,6 @@
|
||||
"basename": "CRM",
|
||||
"path": "Computed/CRM.md"
|
||||
},
|
||||
{
|
||||
"basename": "Hotkeys",
|
||||
"path": "_tutorial/Hotkeys.md"
|
||||
},
|
||||
{
|
||||
"basename": "Trackers",
|
||||
"path": "Computed/Trackers.md"
|
||||
|
||||
15
.obsidian/workspace.json
vendored
15
.obsidian/workspace.json
vendored
@@ -22,18 +22,19 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "5aa185008f6cc9cd",
|
||||
"id": "c4214259a6dca15b",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Inbox/Smartphone Capture/Smartphone Capture.md",
|
||||
"file": "README.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"currentTab": 1
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
@@ -206,17 +207,17 @@
|
||||
"periodic-notes:Open today": false
|
||||
}
|
||||
},
|
||||
"active": "fa7779fed8ad75a1",
|
||||
"active": "c102a50492c64997",
|
||||
"lastOpenFiles": [
|
||||
"_tutorial/Hotkeys.md",
|
||||
"README.md",
|
||||
"Inbox/Smartphone Capture/Smartphone Capture.md",
|
||||
"Inbox/Inbox.md",
|
||||
"_tutorial/_tutorial.md",
|
||||
"Computed/To Process.md",
|
||||
"README.md",
|
||||
"_PARA/Projects/Test Project/Test Project.md",
|
||||
"_PARA/_PARA.md",
|
||||
"Inbox/Scratchpad.md",
|
||||
"Private/Secret Note.md",
|
||||
"Computed/CRM.md"
|
||||
"Private/Secret Note.md"
|
||||
]
|
||||
}
|
||||
19
README.md
19
README.md
@@ -556,6 +556,7 @@ From there take a second to think about the note that you are looking at. Is it
|
||||
|
||||
Finally highlight the text that you just created and copy it to clipboard. Once in the clipboard hit control in to make a new note, in template it will automatically create a Zettelkasten note
|
||||
|
||||
### Project Management Like a Pro
|
||||
|
||||
## External Tools
|
||||
|
||||
@@ -634,7 +635,7 @@ The following is a list of these plugins as well as a one sentence blurb of how
|
||||
- [Calendar](obsidian://show-plugin?id=calendar)
|
||||
- a calendar in the bottom right of the workspace[^2] -- easily jump to a daily note by clicking the day
|
||||
- [Commander](obsidian://show-plugin?id=cmdr)
|
||||
- add custom commands to Obsidian
|
||||
- add custom commands to Obsidian ribbon bar for easy clicking
|
||||
- [Dataview](obsidian://show-plugin?id=dataview)
|
||||
- used in the /computed folder to surface notes from all across the vault, as well as using Yaml for some special features
|
||||
- [Folder Note](obsidian://show-plugin?id=folder-note-plugin)
|
||||
@@ -710,6 +711,22 @@ The following is a list of these plugins as well as a one sentence blurb of how
|
||||
- tracker gives us visualizations of things that we might want to track overtime it's really good for habit tracker and you can do bar charts line charts any type of graph that you can imagine basically
|
||||
- [Timestamper](obsidian://show-plugin?id=obsidian-timestamper)
|
||||
- timestamp or is an easy way to get a Zettelkasten ID without having to manually type it yourself
|
||||
- [Admonition](obsidian://show-plugin?id=obsidian-admonition)
|
||||
- Customizable callouts, that use the code bloc (\`\`\`) format instead of the blockquote (>) format
|
||||
- [Gallery](obsidian://show-plugin?id=obsidian-gallery)
|
||||
- Display images in your vault in a searchable, mood board like format
|
||||
- [Projects](obsidian://show-plugin?id=obsidian-projects)
|
||||
- Notion style project management in Obsidian
|
||||
- [Text Snippets](obsidian://show-plugin?id=text-snippets-obsidian)
|
||||
- expand text shortcuts into full sentences like qbfjlzd -> "the quick brown fox jumped over the lazy dog"
|
||||
- [Advanced Tables](obsidian://show-plugin?id=table-editor-obsidian)
|
||||
- An improvement to built in MD tables, allows for row editing similar to Google Sheets
|
||||
- [Wikipedia](obsidian://show-plugin?id=obsidian-wikipedia)
|
||||
- Insert Wikipedia snippets into your vault by searching for the article title
|
||||
- [Stack Overflow Answers](obsidian://show-plugin?id=obsidian-stack-overflow)
|
||||
- Insert answers from Stack Overflow directly into Obsidian
|
||||
- [Auto Note Mover](obsidian://show-plugin?id=auto-note-mover)
|
||||
- automatically move notes to another folder using a tag
|
||||
|
||||
|
||||
### Migration Guide for Current Obsidian Users
|
||||
|
||||
@@ -6,6 +6,7 @@ date modified: Wednesday, December 14th 2022, 4:52:45 pm
|
||||
---
|
||||
|
||||
|
||||
`ctrl-p` -> open command palette
|
||||
`ctrl-shift-e` -> [auto link title](obsidian://show-plugin?id=obsidian-auto-link-title)
|
||||
`ctrl-shift-p` -> show [projects](obsidian://show-plugin?id=obsidian-projects)
|
||||
`ctrl-click` a folder name -> create a [folder note](obsidian://show-plugin?id=folder-note-plugin)
|
||||
|
||||
Reference in New Issue
Block a user