aboutsummaryrefslogtreecommitdiff
path: root/zsh/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/.zshrc')
-rw-r--r--zsh/.zshrc11
1 files changed, 4 insertions, 7 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 376e080..fe062c3 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -2,11 +2,7 @@ export CPLUS_INCLUDE_PATH="$HOME/programming/cppDev/imgui/imgui/backends:$HOME/p
# export C_INCLUDE_PATH="/usr/lib/gcc/arm-none-eabi/13.2.0/include/:$HOME/programming/thirdparties/tiva-c/:$HOME/programming/thirdparties/tiva-c/third_party/FreeRTOS/Source/include/:$HOME/programming/thirdparties/tiva-c/boards/ek-tm4c123gxl/freertos_demo/:"
export C_INCLUDE_PATH="/usr/lib/gcc/arm-none-eabi/13.2.0/include/:$HOME/programming/thirdparties/tiva-c/"
export ZSH="/home/$USER/.oh-my-zsh"
-export ANDROID_HOME=$HOME/Android/Sdk
export PATH="$PATH:/usr/bin/docker:/usr/local/arm-cross-compiler/install/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/bin:/home/omar/Android/Sdk"
-export PATH=$PATH:$ANDROID_HOME/emulator/
-export PATH=$PATH:$ANDROID_HOME/tools
-export PATH=$PATH:$ANDROID_HOME/platform-tools
export PATH="$PATH":"$HOME/.pub-cache/bin"
export PATH="$PATH:/opt/usr/bin/"
@@ -105,8 +101,9 @@ ex ()
fi
}
+
## cd + ls ##
-cl() {
+function cl() {
cd "$@" && ls
}
@@ -121,14 +118,14 @@ fcd() {
fo() {
local dir
- dir=$(find /run/media/Storage/omar/College -type d | fzf)
+ dir=$(find /run/media/omar/Storage/omar/College -type d | fzf)
if [[ -n $dir ]]; then
cd "$dir"
fi
-
}
bindkey '^k' up-line-or-beginning-search
bindkey '^j' down-line-or-beginning-search
+bindkey '^o' clear-screen
colorscript random