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 settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // | |
| // To see all of Zed's default settings without changing your | |
| // custom settings, run `zed: open default settings` from the | |
| // command palette (cmd-shift-p / ctrl-shift-p) | |
| { | |
| "colorize_brackets": true, |
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
| ❯ ls ~/.local/share/zed/extensions/installed/ | |
| astro/ csv/ dockerfile/ html/ markdownlint/ make/ material-icon-theme/ one-dark-pro/ rainbow-csv/ scss/ sql/ terraform/ toml/ |
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
| [user] | |
| email = 22800416+occamist@users.noreply.github.com | |
| name = Talha Altinel | |
| signingkey = ~/.ssh/github.pub | |
| [url "ssh://git@github.com/"] | |
| insteadOf = https://github.com/ | |
| insteadOf = http://github.com/ | |
| [url "ssh://git@gitlab.com/"] | |
| insteadOf = https://gitlab.com/ | |
| insteadOf = http://gitlab.com/ |
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 | |
| # Output file with timestamp | |
| OUTPUT_FILE="$HOME/Documents/pacman-packages-$(date +%Y%m%d-%H%M%S).txt" | |
| # List ALL installed packages (including dependencies) | |
| pacman -Q > "$OUTPUT_FILE" | |
| echo "Package list saved to: $OUTPUT_FILE" |