35 lines
916 B
Bash
35 lines
916 B
Bash
export ZSH_DISABLE_COMPFIX=true
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
export ZSH_CUSTOM="$HOME/.oh-my-zsh-custom"
|
|
export NVM_DIR="$HOME/.nvm"
|
|
export TERM="xterm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
|
|
export GTK_IM_MODULE=fcitx
|
|
export QT_IM_MODULE=fcitx
|
|
export XMODIFIERS=@im=fcitx
|
|
export QT_QPA_PLATFORM="wayland;xcb"
|
|
export SSHED_CONFIG_FILE="$HOME/.ssh/dma-config"
|
|
export COREPACK_ENABLE_AUTO_PIN=0
|
|
|
|
ZSH_THEME="headline"
|
|
|
|
plugins=(
|
|
git
|
|
zsh-autosuggestions
|
|
zsh-syntax-highlighting
|
|
vi-mode
|
|
)
|
|
|
|
source ~/.rc.sh
|
|
if [ "$OS" != "Windows_NT" ];then
|
|
source ~/.keychain.sh
|
|
fi
|
|
source $ZSH/oh-my-zsh.sh
|
|
if [ "$OS" = "Windows_NT" ]; then
|
|
HEADLINE_HOST_CMD='hostname'
|
|
export PATH="/c/Program Files (x86)/WiX Toolset v3.14/bin:/c/WINDOWS/System32/OpenSSH:/ucrt64/bin:$PATH"
|
|
fi
|
|
|
|
PROG=sshed source $HOME/.oh-my-zsh-custom/autocompletions/autocomplete.sh
|