diff options
Diffstat (limited to '')
-rw-r--r-- | .profile | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -8,11 +8,18 @@ if [ -z "${XDG_RUNTIME_DIR}" ]; then fi DENO_INSTALL="$HOME/.deno"; export DENO_INSTALL; +# https://github.com/denoland/deno/pull/15974 +DENO_NO_UPDATE_CHECK="yes" export DENO_NO_UPDATE_CHECK; +DENO_NO_PROMPT="yes" export DENO_NO_PROMPT; + BUN_INSTALL="/home/luca/.bun"; +GOPROXY="direct" export GOPROXY; +EDITOR="$(which nvim || which vim || which nano || which vi)"; export EDITOR; -EDITOR="nvim"; export EDITOR; -MANPAGER="sh -c 'col -bx | bat -l man -p'"; export MANPAGER; -GPG_TTY="$(tty)" export GPG_TTY; +if [ -n "$(which bat || which batcat)" ] +then + MANPAGER="sh -c 'col -bx | bat -l man -p'"; export MANPAGER; +fi # Sway specific SDL_VIDEODRIVER=wayland; export SDL_VIDEODRIVER; @@ -24,4 +31,3 @@ GPG_TTY="$(tty)" export GPG_TTY; PATH="$HOME/go/bin:$DENO_INSTALL/bin:$BUN_INSTALL/bin:$HOME/.cargo/bin:$HOME/.local/bin:$PATH"; - |