2022-07-14 16:48:24 +00:00
|
|
|
# Environment variables
|
|
|
|
set -p PATH "$HOME/.cargo/bin"
|
|
|
|
|
2022-07-19 13:30:27 +00:00
|
|
|
# Non interactive functions
|
|
|
|
function podman-default-create -w podman
|
2022-07-19 21:14:13 +00:00
|
|
|
set -l container_name $argv[1]
|
|
|
|
|
2022-08-02 12:38:20 +00:00
|
|
|
if systemctl --user is-enabled container-$container_name
|
|
|
|
systemctl --user disable --now container-$container_name
|
|
|
|
end
|
|
|
|
|
2022-07-19 21:14:13 +00:00
|
|
|
if podman container exists $container_name
|
|
|
|
podman stop $container_name
|
|
|
|
end
|
|
|
|
|
2022-07-19 13:30:27 +00:00
|
|
|
podman create \
|
2022-07-19 21:14:13 +00:00
|
|
|
--name $container_name \
|
2022-08-02 12:38:20 +00:00
|
|
|
--tz local \
|
2022-07-19 13:30:27 +00:00
|
|
|
$argv[2..]
|
|
|
|
|
|
|
|
set -l old_pwd (pwd)
|
|
|
|
cd ~/.config/systemd/user
|
2022-07-19 21:14:13 +00:00
|
|
|
podman generate systemd --new --files --name $container_name
|
2022-07-19 13:30:27 +00:00
|
|
|
cd $old_pwd
|
|
|
|
|
2022-07-19 21:14:13 +00:00
|
|
|
systemctl --user enable --now container-$container_name
|
2022-07-19 13:30:27 +00:00
|
|
|
end
|
|
|
|
|
2022-07-14 16:48:24 +00:00
|
|
|
if status is-interactive
|
2022-07-19 20:16:16 +00:00
|
|
|
# Disable greeting
|
|
|
|
set -g fish_greeting
|
|
|
|
|
2022-07-14 16:48:24 +00:00
|
|
|
# Interactive environment variables
|
|
|
|
set -x EDITOR /usr/bin/nvim
|
|
|
|
|
|
|
|
# Setup
|
|
|
|
## McFly
|
|
|
|
set -gx MCFLY_KEY_SCHEME vim
|
|
|
|
set -gx MCFLY_FUZZY 1
|
|
|
|
set -gx MCFLY_RESULTS 25
|
|
|
|
set -gx MCFLY_INTERFACE_VIEW BOTTOM
|
|
|
|
set -gx MCFLY_RESULTS_SORT LAST_RUN
|
|
|
|
set -gx MCFLY_HISTORY_LIMIT 10000
|
|
|
|
mcfly init fish | source
|
|
|
|
|
|
|
|
# Abbreviations
|
|
|
|
## Replacements
|
|
|
|
abbr -a -g rm trash
|
|
|
|
|
|
|
|
## Safety options
|
|
|
|
abbr -a -g cp "cp -i"
|
|
|
|
abbr -a -g mv "mv -i"
|
|
|
|
abbr -a -g rmi "rm -i"
|
|
|
|
|
|
|
|
# Functions
|
|
|
|
## Replacements
|
|
|
|
function cat -w bat
|
|
|
|
bat $argv
|
|
|
|
end
|
|
|
|
end
|