Compare commits
4 commits
a1ca86f38a
...
228844e6db
Author | SHA1 | Date | |
---|---|---|---|
228844e6db | |||
f16a62dcd5 | |||
9846fcab71 | |||
6134356496 |
3 changed files with 6 additions and 9 deletions
|
@ -8,7 +8,7 @@ bindkey "^[3;5~" delete-char
|
||||||
|
|
||||||
# Command completion
|
# Command completion
|
||||||
autoload -U compinit
|
autoload -U compinit
|
||||||
compinit -d "$COMPDIR/.zcompdump"
|
[ -f "$COMPDIR/.zcompdump" ] && compinit -d "$COMPDIR/.zcompdump"
|
||||||
|
|
||||||
# Prompt
|
# Prompt
|
||||||
if [ -f "/usr/bin/liquidprompt" ]; then
|
if [ -f "/usr/bin/liquidprompt" ]; then
|
||||||
|
@ -33,12 +33,8 @@ if [ -f "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# SSH agent
|
# SSH agent
|
||||||
if ! pgrep -u "$USER" ssh-agent > /dev/null; then
|
# Enable it using `systemctl enable --user ssh-agent.service`
|
||||||
ssh-agent -t 1h > "$XDG_RUNTIME_DIR/ssh-agent.env"
|
[ -S "$XDG_RUNTIME_DIR/ssh-agent.socket" ] && export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
|
||||||
fi
|
|
||||||
if [[ ! -f "$SSH_AUTH_SOCK" ]]; then
|
|
||||||
source "$XDG_RUNTIME_DIR/ssh-agent.env" >/dev/null
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Aliases
|
# Aliases
|
||||||
[ -f "$MY_CONFIG/.aliases" ] && . "$MY_CONFIG/.aliases"
|
[ -f "$MY_CONFIG/.aliases" ] && . "$MY_CONFIG/.aliases"
|
||||||
|
@ -60,7 +56,7 @@ hash zoxide 2>/dev/null && eval "$(zoxide init zsh)"
|
||||||
#
|
#
|
||||||
# Example:
|
# Example:
|
||||||
# sudo archlinux-java set java-13-openjdk
|
# sudo archlinux-java set java-13-openjdk
|
||||||
export JAVA_HOME="/usr/lib/jvm/default"
|
[ -d "/usr/lib/jvm/default" ] && export JAVA_HOME="/usr/lib/jvm/default"
|
||||||
|
|
||||||
# Exit with a success status
|
# Exit with a success status
|
||||||
true
|
true
|
||||||
|
|
1
.vim/indent/css.vim
Normal file
1
.vim/indent/css.vim
Normal file
|
@ -0,0 +1 @@
|
||||||
|
set expandtab&
|
|
@ -11,7 +11,7 @@ pacman -S bat duf eza htop inetutils jq kitty-terminfo neovim openssh tmux trans
|
||||||
pacman -S shared-mime-info xdg-user-dirs
|
pacman -S shared-mime-info xdg-user-dirs
|
||||||
pacman -S reflector
|
pacman -S reflector
|
||||||
pacman -S skim
|
pacman -S skim
|
||||||
pacman -S yazi unarchiver ffmpegthumbnailer fd ripgrep poppler zoxide
|
pacman -S yazi unarchiver ffmpegthumbnailer fd ripgrep-all poppler zoxide
|
||||||
# Rust
|
# Rust
|
||||||
pacman -S cargo-audit cargo-outdated cargo-release rustup
|
pacman -S cargo-audit cargo-outdated cargo-release rustup
|
||||||
# Python
|
# Python
|
||||||
|
|
Loading…
Add table
Reference in a new issue