.dotfiles/zsh/path.zsh

12 lines
259 B
Bash
Raw Permalink Normal View History

# Load dotfiles binaries
export PATH="$DOTFILES/bin:$PATH"
# Use project specific binaries before global ones
export PATH="node_modules/.bin:vendor/bin:$PATH"
# Set nvim as default editor
export EDITOR='nvim'
2022-08-15 01:24:41 +02:00
# Fix git log color sequences
export LESS='-R'