Newer
Older
dotfiles / zsh / exports.zsh
@Marcus Bengtsson Marcus Bengtsson on 21 Apr 2021 597 bytes Add GOPATH
#!/bin/sh
# sourced by .zshrc

export TERM=xterm-256color
export VTE_VERSION="100"

export PAGER=less
export EDITOR=vim

export GREP_COLOR="1;33";

export LESS_TERMCAP_mb=$'\E[1;31m'
export LESS_TERMCAP_md=$'\E[1;31m'
export LESS_TERMCAP_me=$'\E[0m'
export LESS_TERMCAP_se=$'\E[0m'
export LESS_TERMCAP_so=$'\E[1;44;33m'
export LESS_TERMCAP_ue=$'\E[0m'
export LESS_TERMCAP_us=$'\E[1;32m'

export KEYTIMEOUT=1

export PATH="/usr/local/sbin:$PATH"

export MINICOM="-c on"

export ZEPHYR_TOOLCHAIN_VARIANT=zephyr
export ZEPHYR_SDK_INSTALL_DIR=/opt/zephyr-sdk-0.11.4

export GOPATH=/home/marcus/Dev/go