This commit is contained in:
Jeffrey Serio 2024-08-03 23:34:48 -05:00
parent 80e59d2cdd
commit 482ff562a8
6 changed files with 12 additions and 11 deletions

View File

@ -289,8 +289,8 @@ default_layout "default"
// that will be used by default if this option is not set.
// Examples:
//
copy_command "xclip -selection clipboard" // x11
// copy_command "wl-copy" // wayland
//copy_command "xclip -selection clipboard" // x11
copy_command "wl-copy" // wayland
// copy_command "pbcopy" // osx
// Choose the destination for copied text

View File

@ -12,12 +12,10 @@ go-tools:
python-tools:
pipx install --include-deps ansible
pipx install black
pipx install pyflakes
pipx install isort
pipx install pipenv
pipx install nose
pipx install pytest
pipx install hyfetch
pip install --user pyright
webdev-tools:
sudo npm install -g @catppuccin/inkcat
@ -26,6 +24,12 @@ webdev-tools:
sudo npm install -g stylelint
sudo dnf install -y tidy
rust-tools:
source "${HOME}/.cargo/env"
cargo install cargo-binstall
cargo_pkgs=(arp-scan bandwhich bat diskonaut du-dust fblog fd hyperfine procs ripgrep skim vivid wthrr)
for pkg in "${cargo_pkgs[@]}"; do cargo-binstall -y "$pkg"; done
refresh-doom-emacs:
rm -rf "${HOME}/.config/emacs"
git clone --depth 1 https://github.com/doomemacs/doomemacs "${HOME}/.config/emacs"

File diff suppressed because one or more lines are too long

View File

@ -60,9 +60,6 @@ zplug "zsh-users/zsh-history-substring-search"
# Use syntax highlighting when typing commands
zplug "zsh-users/zsh-syntax-highlighting", defer:2
# Use fast-syntax-highlighting
#zplug "zdharma-continuum/fast-syntax-highlighting"
# Press escape twice to prepend `sudo` to the command line
zplug "plugins/sudo", from:oh-my-zsh
@ -96,7 +93,7 @@ export MANPAGER="less -X"
if test -x "$(command -v emacs)"; then
EDITOR="emacs"
else
EDITOR="vim"
EDITOR="nvim"
fi
export EDITOR

View File

@ -83,7 +83,8 @@ alias -g CC='| xclip -selection clipboard'
alias -g C='| wc -l'
# Get public IP address
alias pubip='curl ipinfo.io'
alias pubip4='curl -s -m 5 ipv4.icanhazip.com'
alias pubip6='curl -s -m 5 ipv6.icanhazip.com'
# List apps with network connections
alias netcons='lsof -i'