1
0
Fork 0
mirror of https://codeberg.org/Mo8it/server_dotfiles.git synced 2024-09-17 18:51:17 +00:00
server_dotfiles/.config/fish/config.fish

38 lines
885 B
Fish

# Non interactive functions
function podman-default-create -w podman
set -l container_name $argv[1]
podman create \
--name $container_name \
--replace \
--tz local \
-e TZ=Europe/Berlin \
$argv[2..]; or return 1
podman generate systemd --no-header --new --name $container_name >~/.config/systemd/user/container-$container_name.service; or return 1
systemctl --user enable --now container-$container_name
end
if status is-interactive
# Disable greeting
set -g fish_greeting
# Interactive environment variables
set -x EDITOR ~/.cargo/bin/hx
# Abbreviations
## Replacements
abbr -ag rm "trash"
## Safety options
abbr -ag cp "cp -i"
abbr -ag mv "mv -i"
abbr -ag rmr "rm -r"
## Shortcuts
abbr -ag pps "podman ps --format '{{.Names}}'"
# Aliases
alias cat "bat"
end