diff options
| author | cafebabe <77344710+yuzu-eva@users.noreply.github.com> | 2022-05-21 23:35:02 +0200 |
|---|---|---|
| committer | cafebabe <77344710+yuzu-eva@users.noreply.github.com> | 2022-05-21 23:35:02 +0200 |
| commit | 54a0f0bab8bad822d40a774486efd3e736f415be (patch) | |
| tree | 8dae1800076669beeaf4d6fede3c657b8fd2d719 | |
| parent | 16d566da938b049dda8998beec43e3cd85c4ed47 (diff) | |
update bashrc
| -rw-r--r-- | .bashrc | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -5,6 +5,13 @@ # EDITOR='emacsclient -c' PATH="/usr/local/lib:$HOME/.cargo/bin:$HOME/.emacs.d/bin${PATH:+:${PATH}}" +# Path for Android Development +export ANDROID_HOME=$HOME/Android/Sdk +export PATH=$PATH:$ANDROID_HOME/emulator +export PATH=$PATH:$ANDROID_HOME/tools +export PATH=$PATH:$ANDROID_HOME/tools/bin +export PATH=$PATH:$ANDROID_HOME/platform-tools + # If not running interactively, don't do anything case $- in *i*) ;; @@ -118,9 +125,6 @@ fi neofetch - - - ##----------------------------------------------------- ## synth-shell-prompt.sh if [ -f /home/cafebabe/.config/synth-shell/synth-shell-prompt.sh ] && [ -n "$( echo $- | grep i )" ]; then @@ -134,6 +138,14 @@ fi [ -s "$HOME/.config/envman/load.sh" ] && source "$HOME/.config/envman/load.sh" + + +[ -f ~/.fzf.bash ] && source ~/.fzf.bash +export FZF_DEFAULT_OPS="--extended" +export FZF_DEFAULT_COMMAND="fd --type f" +export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" + + # BEGIN_KITTY_SHELL_INTEGRATION if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi # END_KITTY_SHELL_INTEGRATION |
