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://starship.rs/config-schema.json' | |
| format = """ | |
| [](red)\ | |
| $os\ | |
| $username\ | |
| [](bg:peach fg:red)\ | |
| $directory\ | |
| [](bg:yellow fg:peach)\ | |
| $git_branch\ |
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
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| autoload -U compinit | |
| compinit | |
| export ZSH=$HOME/.zsh | |
| export HISTFILE=$ZSH/.zsh_history |
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
| {"name":"Astro","icon":"star-empty","settings":"{\"settings\":\"{\\r\\n \\\"extensions.ignoreRecommendations\\\": false,\\r\\n \\\"lit-html.tags\\\": [\\\"html\\\", \\\"raw\\\", \\\"template:\\\"],\\r\\n \\\"window.newWindowDimensions\\\": \\\"maximized\\\",\\r\\n \\\"typescript.updateImportsOnFileMove.enabled\\\": \\\"always\\\",\\r\\n \\\"cSpell.language\\\": \\\"en-GB,en-US,en,lorem\\\",\\r\\n \\\"[elm]\\\": {\\r\\n \\\"editor.formatOnSave\\\": true\\r\\n },\\r\\n \\\"git.autofetch\\\": true,\\r\\n \\\"explorer.confirmDelete\\\": false,\\r\\n \\\"git.confirmSync\\\": false,\\r\\n \\\"cSpell.userWords\\\": [\\\"powi\\\", \\\"Softwares\\\"],\\r\\n \\\"[typescript]\\\": {\\r\\n \\\"editor.defaultFormatter\\\": \\\"biomejs.biome\\\"\\r\\n },\\r\\n \\\"eslint.workingDirectories\\\": [],\\r\\n \\\"[jsonc]\\\": {\\r\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\r\\n },\\r\\n \\\"eslint.format.enable\\\": true,\\r\\n \\\"eslint.validate\\\": [\\r\\n \\\"javascrip |
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
| #!/bin/zsh | |
| pv takeout-* | tar xzif - && rm takeout-* |
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
| #!/bin/bash | |
| osascript -e 'quit app "Calendar"' & launchctl stop com.apple.CalendarAgent && launchctl start com.apple.CalendarAgent & osascript -e 'tell application "Calendar" to activate' |