1
0
Fork 0
mirror of https://codeberg.org/Mo8it/server_dotfiles.git synced 2024-09-19 19:01:16 +00:00
server_dotfiles/.config/fish/config.fish
2022-07-14 18:48:24 +02:00

35 lines
721 B
Fish

# Environment variables
set -p PATH "$HOME/.cargo/bin"
if status is-interactive
# 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
# Disable greeting
set -g fish_greeting
# 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