This commit is contained in:
JMARyA 2025-05-24 02:52:52 +02:00
commit 41664bc2e1
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
3 changed files with 62 additions and 0 deletions

29
config.fish Normal file
View file

@ -0,0 +1,29 @@
if status is-interactive
# Starship Prompt
starship init fish | source
end
# Disable Greeting
set fish_greeting
# Add binary paths
set -gx PATH $HOME/.local/bin $HOME/.cargo/bin $HOME/bin $PATH
# Env Vars
set -gx EDITOR "micro"
set -gx TERMUX_ROOT "/data/data/com.termux/files"
alias ls='eza'
alias l='eza -l'
alias la='eza -la'
alias cat='bat -p'
alias gfold='gfold -d classic'
# Rust
set -gx RUST_LOG info
function enable_bitwarden_ssh_socket
set -gx SSH_AUTH_SOCK "/home/angelo/.bitwarden-ssh-agent.sock"
end
set -gx GPG_TTY $(tty)