https://github.com/jimbrig/.obsidian
Default Obsidian Vault Configurations
https://github.com/jimbrig/.obsidian
Last synced: about 1 month ago
JSON representation
Default Obsidian Vault Configurations
- Host: GitHub
- URL: https://github.com/jimbrig/.obsidian
- Owner: jimbrig
- Created: 2021-07-15T22:52:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-29T20:26:19.000Z (about 1 year ago)
- Last Synced: 2025-01-13T00:32:40.430Z (3 months ago)
- Language: JavaScript
- Size: 6.87 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - jimbrig/.obsidian - Default Obsidian Vault Configurations (JavaScript)
README
# .obsidian
> Default Obsidian Vault Configurations## Setup
Clone repo and configure obsidian vaults to utilize it as shared config directory or create symlinks/copy over:
```powershell
git clone [email protected]:jimbrig/.obsidian.git
cd .obsidian
git-crypt unlock
cd ..
Copy-Item -Path ".obsidian" -ItemType Directory -Destination "< PATH TO VAULT >" -Force
```Then open vault via: `start obsidian://vault/` using Obsidian's URI.
# Installation
See the [scripts](./scripts) folder for powershell scripts to install Obsidian from the official GitHub reop's releases as well as the Obsidian Web Clipper browser extension.
## Encryption
Use `git-crypt` to encrypt secrets such as my Todoist API key.
```bash
git-crypt init
git-crypt export-key ../git-crypt-key
git-crypt add-gpg-user [email protected]
echo ".obsidian/todoist-token filter=git-crypt diff=git-crypt" > .gitattributes
git add .
git commit -m "Initialize git-crypt and encrypt todoist token"
git push
```