mirror of
https://codeberg.org/hyperreal/dotfiles
synced 2024-11-01 08:43:08 +01:00
Update
This commit is contained in:
parent
80e59d2cdd
commit
482ff562a8
@ -289,8 +289,8 @@ default_layout "default"
|
|||||||
// that will be used by default if this option is not set.
|
// that will be used by default if this option is not set.
|
||||||
// Examples:
|
// Examples:
|
||||||
//
|
//
|
||||||
copy_command "xclip -selection clipboard" // x11
|
//copy_command "xclip -selection clipboard" // x11
|
||||||
// copy_command "wl-copy" // wayland
|
copy_command "wl-copy" // wayland
|
||||||
// copy_command "pbcopy" // osx
|
// copy_command "pbcopy" // osx
|
||||||
|
|
||||||
// Choose the destination for copied text
|
// Choose the destination for copied text
|
||||||
|
@ -12,12 +12,10 @@ go-tools:
|
|||||||
python-tools:
|
python-tools:
|
||||||
pipx install --include-deps ansible
|
pipx install --include-deps ansible
|
||||||
pipx install black
|
pipx install black
|
||||||
pipx install pyflakes
|
|
||||||
pipx install isort
|
|
||||||
pipx install pipenv
|
|
||||||
pipx install nose
|
pipx install nose
|
||||||
pipx install pytest
|
pipx install pytest
|
||||||
pipx install hyfetch
|
pipx install hyfetch
|
||||||
|
pip install --user pyright
|
||||||
|
|
||||||
webdev-tools:
|
webdev-tools:
|
||||||
sudo npm install -g @catppuccin/inkcat
|
sudo npm install -g @catppuccin/inkcat
|
||||||
@ -26,6 +24,12 @@ webdev-tools:
|
|||||||
sudo npm install -g stylelint
|
sudo npm install -g stylelint
|
||||||
sudo dnf install -y tidy
|
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:
|
refresh-doom-emacs:
|
||||||
rm -rf "${HOME}/.config/emacs"
|
rm -rf "${HOME}/.config/emacs"
|
||||||
git clone --depth 1 https://github.com/doomemacs/doomemacs "${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
@ -60,9 +60,6 @@ zplug "zsh-users/zsh-history-substring-search"
|
|||||||
# Use syntax highlighting when typing commands
|
# Use syntax highlighting when typing commands
|
||||||
zplug "zsh-users/zsh-syntax-highlighting", defer:2
|
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
|
# Press escape twice to prepend `sudo` to the command line
|
||||||
zplug "plugins/sudo", from:oh-my-zsh
|
zplug "plugins/sudo", from:oh-my-zsh
|
||||||
|
|
||||||
@ -96,7 +93,7 @@ export MANPAGER="less -X"
|
|||||||
if test -x "$(command -v emacs)"; then
|
if test -x "$(command -v emacs)"; then
|
||||||
EDITOR="emacs"
|
EDITOR="emacs"
|
||||||
else
|
else
|
||||||
EDITOR="vim"
|
EDITOR="nvim"
|
||||||
fi
|
fi
|
||||||
export EDITOR
|
export EDITOR
|
||||||
|
|
||||||
|
@ -83,7 +83,8 @@ alias -g CC='| xclip -selection clipboard'
|
|||||||
alias -g C='| wc -l'
|
alias -g C='| wc -l'
|
||||||
|
|
||||||
# Get public IP address
|
# 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
|
# List apps with network connections
|
||||||
alias netcons='lsof -i'
|
alias netcons='lsof -i'
|
||||||
|
Loading…
Reference in New Issue
Block a user