diff --git a/home/.bashrc b/home/.bashrc index 00a5a04..12bc83e 100644 --- a/home/.bashrc +++ b/home/.bashrc @@ -123,9 +123,9 @@ FZF_DEFAULT_COMMAND='fd --type f| fzf --print0 | xargs -0 -o vim' # ask scrcpy to use a specific adb binary, export ADB=/usr/bin/adb -source /home/ys/Data/projects/code/Bash/nnn/nnnconfig.sh -export PATH="$PATH:/home/ys/Data/projects/code/Bash/nnn" -export PATH="$PATH:/home/ys/.local/bin" +source "$HOME/code/scripts/system/nnn/nnnconfig.sh" +export PATH="$PATH:$HOME/code/scripts/system/nnn" +export PATH="$PATH:$HOME/.local/bin" # set PATH so it includes user's private bin if it exists if [ -d "$HOME/bin" ] ; then @@ -137,4 +137,4 @@ fi source /home/ys/Data/projects/code/Python/Envs/General/bin/activate # Added by LM Studio CLI tool (lms) -export PATH="$PATH:/home/ys/.lmstudio/bin" +export PATH="$PATH:$HOME/.lmstudio/bin" diff --git a/home/.zshrc b/home/.zshrc index 55be3ab..be2903f 100644 --- a/home/.zshrc +++ b/home/.zshrc @@ -35,3 +35,9 @@ zstyle ':completion:*' verbose true zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31' zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd' + +export ZSH="$HOME/.oh-my-zsh" +ZSH_THEME="powerlevel9k/powerlevel9k" +source $ZSH/custom/themes/powerlevel9k/powerlevel9k.zsh-theme + + diff --git a/home/bash-config/bashrc.aliases b/home/bash-config/bashrc.aliases new file mode 100644 index 0000000..e69de29 diff --git a/home/bash-config/bashrc.base b/home/bash-config/bashrc.base new file mode 100644 index 0000000..e69de29 diff --git a/home/bash-config/bashrc.functions b/home/bash-config/bashrc.functions new file mode 100644 index 0000000..e69de29 diff --git a/home/bash-config/bashrc.local b/home/bash-config/bashrc.local new file mode 100644 index 0000000..e69de29 diff --git a/setup.sh b/setup.sh index d78a46d..88e6933 100755 --- a/setup.sh +++ b/setup.sh @@ -7,4 +7,4 @@ mkdir -p "$HOME/.config/nvim" ln -sf ~/code/configs/home/.gitconfig ~/.gitconfig ln -sf ~/code/configs/home/.bashrc ~/.bashrc ln -sf ~/code/configs/home/.zshrc ~/.zshrc -ln -sf ~/code/configs/nvim/ ~/.config/nvim +ln -sf ~/code/configs/nvim/ ~/.config