Skip to content

Instantly share code, notes, and snippets.

View dpi0's full-sized avatar
🌲
being better

divyansh dpi0

🌲
being better
View GitHub Profile
@dpi0
dpi0 / zsh.sh
Last active March 9, 2025 12:00
zsh installation and set up on any debian/arch/fedora machine
#!/usr/bin/env bash
PKG="zsh"
SHELL_DIR="$HOME/sh"
CONFIG_FILE="$HOME/.zshrc"
P10K_DIR="$SHELL_DIR/zsh/powerlevel10k"
SHELL_REPO="https://github.com/dpi0/sh"
# Backup existing config
timestamped_backup() {
@dpi0
dpi0 / vim.sh
Last active March 2, 2025 12:04
vim installation and set up on any debian/arch/fedora machine
#!/usr/bin/env bash
PKG="vim"
CONFIG_FILE="$HOME/.vimrc"
MY_REPO="https://github.com/dpi0/sh"
CONFIG_URL="${MY_REPO}/raw/main/.vimrc"
# Backup existing config
timestamped_backup() {
local target_file="$1"