Files
dotfiles/fish/config.fish
T

25 lines
517 B
Fish

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 --export --global EDITOR nvim
# Set the terminal
set --export --global TERM "screen-256color"
# Install OMF if it is not already
if test ! -d ~/.local/share/omf
curl -L https://get.oh-my.fish | fish
end
# Alias for the cat command
alias cat="bat --theme OneHalfDark"
# Alias for the ls command
alias ls="exa --icons --long --classify"
end