This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "final_space": true, | |
| "console_title": true, | |
| "console_title_style": "folder", | |
| "blocks": [ | |
| { | |
| "type": "prompt", | |
| "alignment": "left", | |
| "segments": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| ----------- A U R A ------------------- | |
| ------ A Minimalist Theme ------------- | |
| ------- By Ashwin Jadhav -------------- | |
| */ | |
| /* ---------- VARIABLES ---------- */ | |
| .theme-light { | |
| --cpt-red: 240, 100, 119; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript: Promise.all([import('https://unpkg.com/turndown@6.0.0?module'), import('https://unpkg.com/@tehshrike/readability@0.2.0'), ]).then(async ([{ | |
| default: Turndown | |
| }, { | |
| default: Readability | |
| }]) => { | |
| /* Optional vault name */ | |
| const vault = "Second Brain"; | |
| /* Optional folder name" */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Zed Build and Update Script for Windows | |
| # This script builds or updates Zed from source and sets up a command-line interface. | |
| # Enable strict mode | |
| Set-StrictMode -Version Latest | |
| $ErrorActionPreference = "Stop" | |
| # Configuration | |
| $BuildDir = "$env:GITHUB_WORKSPACE" | |
| $InstallDir = ".\zed-install" |