mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
86 lines
1.8 KiB
Bash
86 lines
1.8 KiB
Bash
# ~/.config/zsh/.zshrc
|
|
# ln -s ~/.dotfiles/wsl/.zshrc ~/.config/zsh/.zshrc
|
|
### Variables ###
|
|
|
|
export DOTFILES="$HOME/.dotfiles"
|
|
source $DOTFILES/zsh/*.zsh
|
|
export ARCHFLAGS="-arch x86_64"
|
|
|
|
# Absolute navigation
|
|
alias src="cd ~/Source && ls"
|
|
alias dotfiles="cd $DOTFILES && ls"
|
|
|
|
|
|
### WSL Options ###
|
|
|
|
# WSL open
|
|
open() {
|
|
local target=$1
|
|
|
|
if command -v explorer.exe > /dev/null; then
|
|
explorer.exe "$target"
|
|
else
|
|
command open "$target"
|
|
fi
|
|
}
|
|
|
|
# WSL Neovide
|
|
gvi() {
|
|
local target=$1
|
|
|
|
if command -v neovide.exe > /dev/null; then
|
|
neovide.exe "$target"
|
|
else
|
|
if command -v neovide > /dev/null; then
|
|
neovide "$target"
|
|
else
|
|
echo "neovide is not installed"
|
|
fi
|
|
fi
|
|
}
|
|
|
|
### Misc ###
|
|
|
|
export PATH=/opt/bin:$PATH
|
|
|
|
# Conda #
|
|
|
|
# >>> conda initialize >>>
|
|
# !! Contents within this block are managed by 'conda init' !!
|
|
__conda_setup="$('/home/js0ny/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
|
|
if [ $? -eq 0 ]; then
|
|
eval "$__conda_setup"
|
|
else
|
|
if [ -f "/home/js0ny/miniconda3/etc/profile.d/conda.sh" ]; then
|
|
. "/home/js0ny/miniconda3/etc/profile.d/conda.sh"
|
|
else
|
|
export PATH="/home/js0ny/miniconda3/bin:$PATH"
|
|
fi
|
|
fi
|
|
unset __conda_setup
|
|
# <<< conda initialize <<<
|
|
|
|
# Ubuntu Command Not Found #
|
|
|
|
if [[ -x /usr/lib/command-not-found ]] ; then
|
|
if (( ! ${+functions[command_not_found_handler]} )) ; then
|
|
function command_not_found_handler {
|
|
[[ -x /usr/lib/command-not-found ]] || return 1
|
|
/usr/lib/command-not-found -- ${1+"$1"} && :
|
|
}
|
|
fi
|
|
fi
|
|
|
|
# LinuxBrew #
|
|
|
|
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
|
# Set PATH, MANPATH, etc., for Homebrew.
|
|
|
|
# >>> juliaup initialize >>>
|
|
|
|
# !! Contents within this block are managed by juliaup !!
|
|
|
|
path=('/home/js0ny/.juliaup/bin' $path)
|
|
export PATH
|
|
|
|
# <<< juliaup initialize <<<
|