Update .local/share/chezmoi/home/.chezmoiignore, .local/share/chezmoi/home/dot_zshrc, .local/share/chezmoi/home/private_dot_config/shell/aliases.sh.tmpl, .local/share/chezmoi/home/dot_local/scripts/docker-functions.bash, .local/share/chezmoi/home/.chezmoiexternal.toml

This commit is contained in:
Brian Zalewski 2022-12-06 16:43:41 +00:00
parent 6b1606e766
commit eee58f013d
5 changed files with 1317 additions and 14 deletions

View file

@ -56,10 +56,6 @@
type = "file" type = "file"
url = "https://raw.githubusercontent.com/zsh-users/antigen/develop/bin/antigen.zsh" url = "https://raw.githubusercontent.com/zsh-users/antigen/develop/bin/antigen.zsh"
refreshPeriod = "{{ $refreshPeriod }}" refreshPeriod = "{{ $refreshPeriod }}"
[".local/scripts/docker-functions.bash"]
type = "file"
url = "https://raw.githubusercontent.com/jessfraz/dotfiles/master/.dockerfunc"
refreshPeriod = "{{ $refreshPeriod }}"
[".local/scripts/fzf-git.bash"] [".local/scripts/fzf-git.bash"]
type = "file" type = "file"
url = "https://raw.githubusercontent.com/junegunn/fzf-git.sh/main/fzf-git.sh" url = "https://raw.githubusercontent.com/junegunn/fzf-git.sh/main/fzf-git.sh"

View file

@ -13,6 +13,7 @@ Library
{{- end }} {{- end }}
{{- if ne .host.distro.family "linux" }} {{- if ne .host.distro.family "linux" }}
dot_VirtualBox
dot_local/bin/executable_install-gnome-extensions dot_local/bin/executable_install-gnome-extensions
dot_local/bin/executable_kde-wallpaper dot_local/bin/executable_kde-wallpaper
dot_Xresources dot_Xresources

File diff suppressed because it is too large Load diff

View file

@ -250,6 +250,8 @@ if [ -f "$HOME/.local/scripts/antigen.zsh" ]; then
source "$HOME/.local/scripts/antigen.zsh" source "$HOME/.local/scripts/antigen.zsh"
fi fi
if command -v antigen > /dev/null; then if command -v antigen > /dev/null; then
# Fix for oh-my-zsh overriding exa aliases
export DISABLE_LS_COLORS=true
antigen use oh-my-zsh antigen use oh-my-zsh
# antigen bundle adb # antigen bundle adb
# antigen bundle colored-man-pages # antigen bundle colored-man-pages

View file

@ -42,6 +42,13 @@ if command -v gping > /dev/null; then
alias ping='gping' alias ping='gping'
fi fi
# Make copy command verbose
alias cp='cp -v'
# Make mv command verbose
alias mv='mv -v'
# Make rm command verbose
alias rm='rm -vi'
### mitmproxy / mitmweb ### mitmproxy / mitmweb
if command -v mitmproxy > /dev/null; then if command -v mitmproxy > /dev/null; then
alias mitmproxy="mitmproxy --set confdir=$XDG_CONFIG_HOME/mitmproxy" alias mitmproxy="mitmproxy --set confdir=$XDG_CONFIG_HOME/mitmproxy"
@ -74,11 +81,10 @@ alias banned='sudo zgrep "Ban" /var/log/fail2ban.log*'
alias connections='nm-connection-editor' alias connections='nm-connection-editor'
# Make copy command verbose
alias cp='cp -v'
# Command-line DNS utility # Command-line DNS utility
alias dog="docker run -it --rm dog" if ! command -v dog > /dev/null; then
alias dog="docker run -it --rm dog"
fi
# Download a file # Download a file
alias download='curl --continue-at - --location --progress-bar --remote-name --remote-time' alias download='curl --continue-at - --location --progress-bar --remote-name --remote-time'
@ -113,9 +119,6 @@ alias mkdir='mkdir -pv'
# Make mount command output readable # Make mount command output readable
alias mount='mount | column -t' alias mount='mount | column -t'
# Make mv command verbose
alias mv='mv -v'
# Link pip to pip3 # Link pip to pip3
if ! command -v pip > /dev/null; then if ! command -v pip > /dev/null; then
alias pip='pip3' alias pip='pip3'
@ -141,9 +144,6 @@ alias rclone-gui='rclone rcd --rc-web-gui --rc-user=admin --rc-pass=pass --rc-se
# Reboot the computer # Reboot the computer
alias reboot='sudo /sbin/reboot' alias reboot='sudo /sbin/reboot'
# Make rm command verbose
alias rm='rm -vi'
# Launch the Python Simple HTTP Server # Launch the Python Simple HTTP Server
alias serve='python -m SimpleHTTPServer' alias serve='python -m SimpleHTTPServer'