mirror of https://github.com/sgoudham/dotfiles.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
757 B
Plaintext
37 lines
757 B
Plaintext
# PATH
|
|
export PATH="$PATH:$HOME/.local/bin"
|
|
export PATH="$PATH:$HOME/.local/scripts"
|
|
|
|
# JetBrains Toolbox
|
|
export PATH="$PATH:$HOME/.local/share/JetBrains/Toolbox/scripts"
|
|
|
|
# Go
|
|
export PATH="$PATH:$HOME/.local/share/go/bin"
|
|
|
|
# Rust
|
|
source "$HOME/.cargo/env"
|
|
|
|
# Haskell (ghcup-env)
|
|
[ -f "$HOME/.ghcup/env" ] && source "$HOME/.ghcup/env"
|
|
|
|
# Deno
|
|
export DENO_INSTALL="$HOME/.deno"
|
|
export PATH="$DENO_INSTALL/bin:$PATH"
|
|
|
|
# Config Directory
|
|
export XDG_CONFIG_HOME=$HOME/.config
|
|
|
|
# WezTerm By Default
|
|
export TERMINAL=wezterm-gui
|
|
|
|
# Editing
|
|
export EDITOR="nvim"
|
|
export SUDO_EDITOR=$(which nvim)
|
|
|
|
# Go
|
|
export GOPATH="$HOME/.local/share/go"
|
|
|
|
# Java
|
|
export JAVA_HOME="$SDKMAN_DIR/candidates/java/current"
|
|
export GRAALVM_HOME="$SDKMAN_DIR/candidates/java/22.3.r17-grl"
|