-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshrc
More file actions
63 lines (55 loc) · 1.79 KB
/
Copy path.zshrc
File metadata and controls
63 lines (55 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Path to your oh-my-zsh installation.
ZSH=/usr/share/oh-my-zsh/
# $1 is the name of the plugin
# $2 is the github url
install_plugin() {
if [ ! -e $ZSH"custom/plugins/$1" ]
then
echo "cloning $2 into $ZSH""custom/plugins/$1"
sudo git clone $2 $ZSH"custom/plugins/$1"
fi
}
install_plugin "zsh-autosuggestions" "https://github.com/zsh-users/zsh-autosuggestions"
install_plugin "zsh-completions" "https://github.com/zsh-users/zsh-completions"
install_plugin "zsh-syntax-highlighting" "https://github.com/zsh-users/zsh-syntax-highlighting"
export plugins=(
zsh-autosuggestions
zsh-completions
zsh-syntax-highlighting
git
catimg
command-not-found
extract
python
)
ZSH_CACHE_DIR=$HOME/.cache/oh-my-zsh
if [[ ! -d $ZSH_CACHE_DIR ]]; then
mkdir $ZSH_CACHE_DIR
fi
export BROWSER=/usr/bin/librewolf
export EDITOR=/usr/bin/emacs
export ANDROID_HOME=/home/ebeem/Android/Sdk
export ANDROID_SDK_ROOT=$ANDROID_HOME
#export PATH=/home/ebeem/workspace/git/flutter/bin::$PATH
export PATH=home/ebeem/.dotnet/tools:$PATH
export PATH=/opt/android-sdk/tools/bin:$PATH
export PATH=~/.emacs.d/bin:~/.bin:$PATH
export PATH=~/.config/emacs/bin:~/.bin:$PATH
export PATH=~/.dotnet/tools:$PATH
export STEAM_COMPAT_CLIENT_INSTALL_PATH=/home/ebeem/.steam
export XDG_CONFIG_HOME=~/.config
source $ZSH/oh-my-zsh.sh
export QT_QPA_PLATFORMTHEME="qt5ct"
export GUILE_LOAD_PATH=/usr/local/share/guile/site/3.0
alias em="/usr/bin/emacsclient -nw"
fastfetch
autoload -Uz vcs_info # enable vcs_info
precmd () { vcs_info } # always load before displaying the prompt
zstyle ':vcs_info:*' formats ' %s(%F{green}%b%f)' # git(main)
PS1='
%n@%m %F{blue}%/%f$vcs_info_msg_0_
$ '
source $HOME/.aliases
# Created by `pipx` on 2024-04-20 09:45:54
export PATH="$PATH:/home/ebeem/.local/bin"
export PATH="/home/ebeem/.local/bin:$PATH"