initial commit

This commit is contained in:
aminnairi
2023-04-09 00:48:29 +02:00
commit 1e64fe69be
82 changed files with 6976 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
if status is-interactive
# Enable vi-mode
fish_vi_key_bindings
# Set the keyboard rate
xset r rate 150 30
# Set the editor to use vim
set -xg EDITOR vim
# Install OMF if it is not already
if test ! -d ~/.local/share/omf
curl https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install | fish
else
omf update
end
# Alias for the cat command
alias cat="bat --theme Nord"
# Alias for the ls command
alias ls="exa --icons --long --classify"
end