dotfiles/zsh/env.zsh

12 lines
173 B
Bash
Raw Normal View History

2018-06-15 13:43:04 +00:00
#!/usr/bin/env zsh
2018-02-23 09:38:24 +00:00
2019-07-20 21:09:32 +00:00
export USER="${USER:-$USERNAME}"
2018-02-23 09:38:24 +00:00
# find editor
export EDITOR="nvim"
export VISUAL="$EDITOR"
alias edit="$EDITOR"
alias e="$EDITOR"
2018-02-23 09:38:24 +00:00
2018-07-04 20:55:45 +00:00
export CLICOLOR="1"