dotfiles/.zshenv

16 lines
296 B
Plaintext
Raw Normal View History

2020-11-18 02:24:48 +00:00
# DenoJS
export DENO_INSTALL="/home/paoda/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
# Set Default Editor
export EDITOR="/usr/bin/nvim"
2021-01-11 09:01:11 +00:00
# Add ~/.local/bin to PATH
export PATH="$HOME/.local/bin:$PATH"
2021-04-12 20:10:40 +00:00
# Zig language Server
export PATH="/opt/zls/bin:$PATH"
# Rust
source "$HOME/.cargo/env"