Skip to content

Instantly share code, notes, and snippets.

View occamist's full-sized avatar
👄
KISS

Talha Altınel occamist

👄
KISS
View GitHub Profile
@occamist
occamist / settings.json
Last active June 6, 2026 15:29
Zed Settings to make it look like GoLand MaterialUI One Dark Pro
// 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,
@occamist
occamist / list-zed-extensions
Last active June 4, 2026 00:36
my Zed extensions
❯ ls ~/.local/share/zed/extensions/installed/
astro/ csv/ dockerfile/ html/ markdownlint/ make/ material-icon-theme/ one-dark-pro/ rainbow-csv/ scss/ sql/ terraform/ toml/
@occamist
occamist / .gitconfig
Last active June 20, 2026 00:30
new .gitconfig with ssh signing key
[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/
@occamist
occamist / output-pacman-pkgs.sh
Created October 5, 2025 17:51
outputs all pacman packages
#!/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"