38 lines
924 B
Fish
Executable File
38 lines
924 B
Fish
Executable File
fish_config theme choose "Dracula Official"
|
|
|
|
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
end
|
|
|
|
function fish_greeting
|
|
fastfetch
|
|
end
|
|
|
|
# >>> conda initialize >>>
|
|
# !! Contents within this block are managed by 'conda init' !!
|
|
if test -f /home/enrique/miniconda3/bin/conda
|
|
eval /home/enrique/miniconda3/bin/conda "shell.fish" "hook" $argv | source
|
|
else
|
|
if test -f "/home/enrique/miniconda3/etc/fish/conf.d/conda.fish"
|
|
. "/home/enrique/miniconda3/etc/fish/conf.d/conda.fish"
|
|
else
|
|
set -x PATH "/home/enrique/miniconda3/bin" $PATH
|
|
end
|
|
end
|
|
# <<< conda initialize <<<
|
|
|
|
## EVALS ##
|
|
eval (/home/linuxbrew/.linuxbrew/bin/brew shellenv)
|
|
starship init fish | source
|
|
|
|
|
|
## ALIASES ##
|
|
alias zy "sudo zypper"
|
|
alias conx '~/.scripts/x_session_ssh.sh'
|
|
alias sentinel '~/.scripts/sentinel_x_session.sh'
|
|
alias zypper 'sudo zypper'
|
|
|
|
|
|
## EXPORTS ##
|
|
set -Ux EDITOR micro
|