[[Describe this app and list installation sources]]

Synchronisation

Server host

  • OneDrive Host vault files

PC

  • Remotely Save syncs files while Obsidian is running
  • Symbolic Link sync .obsidian config

Phone

  • FolderSync syncs files
  • FolderSync syncs .obsidian config folder separately
  • Starts sync every time obsidian is open (configured through Samsung Routines)

Backup version control

  • PC commits and pushes local changes to GitHub repository every 5min

Publishing

Extensions

[[List extensions for this app]]

Take a look at Database Folder, Projects, Breadcrumbs, and Metadata Menu (which mimics supertags in Tana) are also solid plugins in Obsidian that complement Dataview and may be worth checking out too

Motivation

  • Don’t get lost improving your setup, start writing
  • Obsidian subreddit/YouTube is bad influence

Pasted image 20231204121250.png

Configuration and settings

Replace local settings with synchronized cloud settings

New-Item D:\Notes\.obsidian -Target D:\PlutosCloud\Config\.obsidian\ -ItemType SymbolicLink
$filesToKeepAvailable = Get-ChildItem D:\PlutosCloud\Config\.obsidian -Recurse
$filesToKeepAvailable += Get-Item D:\PlutosCloud\Config\.obsidian
$filesToKeepAvailable | foreach {
    $_.Attributes = $_.Attributes -bor 0x080000 -band (-bnot 0x100000)
}
Invoke-Command {
$cloudFolder = "D:\PlutosCloud\Config"
$localFolder = "D:\Notes"
$syncItems = @(
    '.obsidian\'
)
 
# Replace local files with references to synchronized cloud files
$syncItems | foreach {
    New-Item -ItemType SymbolicLink -Path "$localFolder\$_" -Target "$cloudFolder\$_" -Force -ErrorAction Stop
}
 
# Keep all cloud files, that are accessible via symlinks, fully present locally
Set-Location $cloudFolder -ErrorAction Stop
@(
    Get-Item $syncItems | where PSIsContainer | Get-ChildItem -Recurse
    Get-Item $syncItems
) | foreach { 
    $_.Attributes = $_.Attributes -bor 0x080000 -band (-bnot 0x100000) 
}
}

Or configure manually

Open Settings > General

  • Strict line breaks # Editor
  • In the folder specified below ← Default location for new attachments
    • attachments ← Attachment folder path

Open Settings > Appearance

  • Adapt to system ← Base color scheme

Open Settings > Hotkeys

  • Ctrl + Alt + C ← Obsidian Git: Commit all changes with specific message
  • Ctrl + Shift + G ← Obsidian Git: Open source control view
  • Ctrl + Alt + P ← Obsidian Git: Pull
  • Ctrl + Alt + Shift + P ← Obsidian Git: Push

Sources:

Related:

[[List related notes]]

Tags:

https://www.reddit.com/r/ObsidianMD/comments/1872kf5/introducing_obsidian_latex_ocr_generate_latex/