├── .colima └── default │ └── colima.yaml ├── .config ├── contain ├── fontconfig │ └── fonts.conf ├── foot │ ├── foot.dark.ini │ ├── foot.generate.py │ ├── foot.greyscale-dark.ini │ ├── foot.greyscale-light.ini │ ├── foot.ini.tmpl │ └── foot.light.ini ├── git │ └── config ├── kitty │ ├── colorscheme.dark.conf │ ├── colorscheme.generate.py │ ├── colorscheme.greyscale-dark.conf │ ├── colorscheme.greyscale-light.conf │ ├── colorscheme.light.conf │ ├── fontawesome.generate.py │ └── kitty.conf ├── mako │ └── config ├── networkmanager-dmenu │ └── config.ini ├── nvim │ └── init.lua ├── rio │ ├── config.toml │ └── themes │ │ ├── solarized-dark.toml │ │ └── solarized-light.toml ├── skhd │ └── skhdrc ├── sway │ ├── config │ ├── enable │ ├── enabled │ │ └── .keep │ └── framework ├── swaynag │ └── config ├── waybar │ ├── config │ ├── mediaplayer.py │ └── style.css ├── wofi │ └── style.css ├── yabai │ └── yabairc ├── yadm │ ├── bootstrap │ ├── config │ └── encrypt ├── zed │ ├── keymap.json │ └── settings.json └── zsh-completions │ └── download.sh ├── .docker ├── alpine ├── alpine-desktop ├── alpine-desktopbase ├── alpine-go ├── alpine-node ├── alpine-pwn ├── alpine-rust ├── alpine-slim ├── debian ├── debian-desktop ├── debian-node ├── drone.yml ├── fedora ├── fedora-desktop ├── fedora-desktopbase ├── fedora-go ├── fedora-pwn ├── fedora-rust ├── fm ├── ubuntu ├── ubuntu-desktop ├── ubuntu-desktopbase └── ubuntu-pwn ├── .dockerignore ├── .github ├── LICENSE ├── README.md └── workflows │ └── docker-publish.yml ├── .gitignore ├── .gnupg ├── gpg-agent.conf └── gpg.conf ├── .local ├── bin │ ├── apple_superdrive_hack │ ├── big-addr │ ├── contain │ ├── frequency │ ├── install_android_sdk │ ├── install_flutter_sdk │ ├── iptables-vis │ ├── iterm_open │ ├── lock │ ├── networkmanager_dmenu │ ├── rancher-lima │ ├── rio_open │ ├── share │ ├── stignore-gen │ ├── w_chrome │ ├── w_discord │ ├── w_obsidian │ └── wofi_run ├── screenshots │ ├── iterm1-light.png │ ├── iterm1.png │ ├── iterm2.png │ ├── iterm3-light.png │ └── iterm3.png ├── share │ ├── MultiMC │ │ └── install.sh │ └── yadm │ │ └── archive └── wallpaper │ ├── daniel-j-schwarz-a4M-Vegh7Y4-unsplash.jpg │ └── default.jpg ├── .mozilla └── firefox │ └── chrome │ └── userChrome.css ├── .pwn └── bin │ ├── apktool │ ├── binwalk │ ├── hashpump │ ├── jwt_tool │ ├── pev │ ├── sqlmap │ ├── stegseek │ └── ubidump ├── .ssh └── config ├── .tmux.conf └── .zshrc /.colima/default/colima.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.colima/default/colima.yaml -------------------------------------------------------------------------------- /.config/contain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/contain -------------------------------------------------------------------------------- /.config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/fontconfig/fonts.conf -------------------------------------------------------------------------------- /.config/foot/foot.dark.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/foot/foot.dark.ini -------------------------------------------------------------------------------- /.config/foot/foot.generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/foot/foot.generate.py -------------------------------------------------------------------------------- /.config/foot/foot.greyscale-dark.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/foot/foot.greyscale-dark.ini -------------------------------------------------------------------------------- /.config/foot/foot.greyscale-light.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/foot/foot.greyscale-light.ini -------------------------------------------------------------------------------- /.config/foot/foot.ini.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/foot/foot.ini.tmpl -------------------------------------------------------------------------------- /.config/foot/foot.light.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/foot/foot.light.ini -------------------------------------------------------------------------------- /.config/git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/git/config -------------------------------------------------------------------------------- /.config/kitty/colorscheme.dark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/kitty/colorscheme.dark.conf -------------------------------------------------------------------------------- /.config/kitty/colorscheme.generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/kitty/colorscheme.generate.py -------------------------------------------------------------------------------- /.config/kitty/colorscheme.greyscale-dark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/kitty/colorscheme.greyscale-dark.conf -------------------------------------------------------------------------------- /.config/kitty/colorscheme.greyscale-light.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/kitty/colorscheme.greyscale-light.conf -------------------------------------------------------------------------------- /.config/kitty/colorscheme.light.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/kitty/colorscheme.light.conf -------------------------------------------------------------------------------- /.config/kitty/fontawesome.generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/kitty/fontawesome.generate.py -------------------------------------------------------------------------------- /.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /.config/mako/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/mako/config -------------------------------------------------------------------------------- /.config/networkmanager-dmenu/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/networkmanager-dmenu/config.ini -------------------------------------------------------------------------------- /.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/nvim/init.lua -------------------------------------------------------------------------------- /.config/rio/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/rio/config.toml -------------------------------------------------------------------------------- /.config/rio/themes/solarized-dark.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/rio/themes/solarized-dark.toml -------------------------------------------------------------------------------- /.config/rio/themes/solarized-light.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/rio/themes/solarized-light.toml -------------------------------------------------------------------------------- /.config/skhd/skhdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/skhd/skhdrc -------------------------------------------------------------------------------- /.config/sway/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/sway/config -------------------------------------------------------------------------------- /.config/sway/enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/sway/enable -------------------------------------------------------------------------------- /.config/sway/enabled/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/sway/framework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/sway/framework -------------------------------------------------------------------------------- /.config/swaynag/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/swaynag/config -------------------------------------------------------------------------------- /.config/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/waybar/config -------------------------------------------------------------------------------- /.config/waybar/mediaplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/waybar/mediaplayer.py -------------------------------------------------------------------------------- /.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/waybar/style.css -------------------------------------------------------------------------------- /.config/wofi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/wofi/style.css -------------------------------------------------------------------------------- /.config/yabai/yabairc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/yabai/yabairc -------------------------------------------------------------------------------- /.config/yadm/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/yadm/bootstrap -------------------------------------------------------------------------------- /.config/yadm/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/yadm/config -------------------------------------------------------------------------------- /.config/yadm/encrypt: -------------------------------------------------------------------------------- 1 | .ssh/id_* 2 | .mc/config.json 3 | -------------------------------------------------------------------------------- /.config/zed/keymap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/zed/keymap.json -------------------------------------------------------------------------------- /.config/zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/zed/settings.json -------------------------------------------------------------------------------- /.config/zsh-completions/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.config/zsh-completions/download.sh -------------------------------------------------------------------------------- /.docker/alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/alpine -------------------------------------------------------------------------------- /.docker/alpine-desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/alpine-desktop -------------------------------------------------------------------------------- /.docker/alpine-desktopbase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/alpine-desktopbase -------------------------------------------------------------------------------- /.docker/alpine-go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/alpine-go -------------------------------------------------------------------------------- /.docker/alpine-node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/alpine-node -------------------------------------------------------------------------------- /.docker/alpine-pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/alpine-pwn -------------------------------------------------------------------------------- /.docker/alpine-rust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/alpine-rust -------------------------------------------------------------------------------- /.docker/alpine-slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/alpine-slim -------------------------------------------------------------------------------- /.docker/debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/debian -------------------------------------------------------------------------------- /.docker/debian-desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/debian-desktop -------------------------------------------------------------------------------- /.docker/debian-node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/debian-node -------------------------------------------------------------------------------- /.docker/drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/drone.yml -------------------------------------------------------------------------------- /.docker/fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/fedora -------------------------------------------------------------------------------- /.docker/fedora-desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/fedora-desktop -------------------------------------------------------------------------------- /.docker/fedora-desktopbase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/fedora-desktopbase -------------------------------------------------------------------------------- /.docker/fedora-go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/fedora-go -------------------------------------------------------------------------------- /.docker/fedora-pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/fedora-pwn -------------------------------------------------------------------------------- /.docker/fedora-rust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/fedora-rust -------------------------------------------------------------------------------- /.docker/fm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/fm -------------------------------------------------------------------------------- /.docker/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/ubuntu -------------------------------------------------------------------------------- /.docker/ubuntu-desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/ubuntu-desktop -------------------------------------------------------------------------------- /.docker/ubuntu-desktopbase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/ubuntu-desktopbase -------------------------------------------------------------------------------- /.docker/ubuntu-pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.docker/ubuntu-pwn -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.github/LICENSE -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.gitignore -------------------------------------------------------------------------------- /.gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.gnupg/gpg-agent.conf -------------------------------------------------------------------------------- /.gnupg/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.gnupg/gpg.conf -------------------------------------------------------------------------------- /.local/bin/apple_superdrive_hack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/apple_superdrive_hack -------------------------------------------------------------------------------- /.local/bin/big-addr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/big-addr -------------------------------------------------------------------------------- /.local/bin/contain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/contain -------------------------------------------------------------------------------- /.local/bin/frequency: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/frequency -------------------------------------------------------------------------------- /.local/bin/install_android_sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/install_android_sdk -------------------------------------------------------------------------------- /.local/bin/install_flutter_sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/install_flutter_sdk -------------------------------------------------------------------------------- /.local/bin/iptables-vis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/iptables-vis -------------------------------------------------------------------------------- /.local/bin/iterm_open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/iterm_open -------------------------------------------------------------------------------- /.local/bin/lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/lock -------------------------------------------------------------------------------- /.local/bin/networkmanager_dmenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/networkmanager_dmenu -------------------------------------------------------------------------------- /.local/bin/rancher-lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/rancher-lima -------------------------------------------------------------------------------- /.local/bin/rio_open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/rio_open -------------------------------------------------------------------------------- /.local/bin/share: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/share -------------------------------------------------------------------------------- /.local/bin/stignore-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/stignore-gen -------------------------------------------------------------------------------- /.local/bin/w_chrome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/w_chrome -------------------------------------------------------------------------------- /.local/bin/w_discord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/w_discord -------------------------------------------------------------------------------- /.local/bin/w_obsidian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/w_obsidian -------------------------------------------------------------------------------- /.local/bin/wofi_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/bin/wofi_run -------------------------------------------------------------------------------- /.local/screenshots/iterm1-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/screenshots/iterm1-light.png -------------------------------------------------------------------------------- /.local/screenshots/iterm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/screenshots/iterm1.png -------------------------------------------------------------------------------- /.local/screenshots/iterm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/screenshots/iterm2.png -------------------------------------------------------------------------------- /.local/screenshots/iterm3-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/screenshots/iterm3-light.png -------------------------------------------------------------------------------- /.local/screenshots/iterm3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/screenshots/iterm3.png -------------------------------------------------------------------------------- /.local/share/MultiMC/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/share/MultiMC/install.sh -------------------------------------------------------------------------------- /.local/share/yadm/archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/share/yadm/archive -------------------------------------------------------------------------------- /.local/wallpaper/daniel-j-schwarz-a4M-Vegh7Y4-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/wallpaper/daniel-j-schwarz-a4M-Vegh7Y4-unsplash.jpg -------------------------------------------------------------------------------- /.local/wallpaper/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.local/wallpaper/default.jpg -------------------------------------------------------------------------------- /.mozilla/firefox/chrome/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.mozilla/firefox/chrome/userChrome.css -------------------------------------------------------------------------------- /.pwn/bin/apktool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.pwn/bin/apktool -------------------------------------------------------------------------------- /.pwn/bin/binwalk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.pwn/bin/binwalk -------------------------------------------------------------------------------- /.pwn/bin/hashpump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.pwn/bin/hashpump -------------------------------------------------------------------------------- /.pwn/bin/jwt_tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.pwn/bin/jwt_tool -------------------------------------------------------------------------------- /.pwn/bin/pev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.pwn/bin/pev -------------------------------------------------------------------------------- /.pwn/bin/sqlmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.pwn/bin/sqlmap -------------------------------------------------------------------------------- /.pwn/bin/stegseek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.pwn/bin/stegseek -------------------------------------------------------------------------------- /.pwn/bin/ubidump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.pwn/bin/ubidump -------------------------------------------------------------------------------- /.ssh/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.ssh/config -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- 1 | set -g default-terminal "tmux-256color" 2 | -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverwentdown/env/HEAD/.zshrc --------------------------------------------------------------------------------