# fish setup
set --universal fish_greeting
set --universal fish_user_paths $HOME/.local/bin
Last active
March 26, 2020 05:49
-
-
Save soulim/69ec2bc0eadff02f816f5fad0671cf79 to your computer and use it in GitHub Desktop.
Dotfiles and etc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.config/fish/conf.d | |
set --export ASDF_CONFIG_FILE $HOME/.config/asdf/.asdfrc | |
set --export ASDF_DATA_DIR $HOME/.local/share/asdf | |
source /usr/local/opt/asdf/asdf.fish |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew 'fish' | |
brew 'asdf' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fish_prompt --description 'Custom fish prompt' | |
echo -n -s (set_color $fish_color_cwd) (basename $PWD) (set_color $fish_color_normal) \ | |
(set_color $fish_color_comment) (fish_git_prompt) (set_color $fish_color_normal) \ | |
" ❯ " | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment