1
0
Fork 0
mirror of https://codeberg.org/Mo8it/server_dotfiles.git synced 2024-09-19 19:01:16 +00:00

Add fish config

This commit is contained in:
Mo 2022-07-14 18:48:24 +02:00
commit 6dc2f3d9c8

35
.config/fish/config.fish Normal file
View file

@ -0,0 +1,35 @@
# 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