speed up fish

This commit is contained in:
Noah Masur
2021-04-10 00:10:30 -04:00
parent 0f27508866
commit 6678ef35a9
4 changed files with 18 additions and 2 deletions

View File

@ -10,6 +10,7 @@ function abbrs --description 'All abbreviations'
abbr -a c 'cd'
abbr -a -- - 'cd -'
abbr -a proj 'cd $PROJ'
abbr -a mkd 'mkdir -pv'
# Tmux
abbr -a ta 'tmux attach-session'

View File

@ -0,0 +1,8 @@
# This function creates an output file of just the printf values for
# modifying the shell colors. This output file is used to load the
# current colors into my shell much faster than running the function on
# prompt.
function generate_fish_colors --description "Create fish colors file"
theme_gruvbox dark > $DOTS/fish.configlink/fish_colors
end