mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
11 lines
173 B
Bash
11 lines
173 B
Bash
#!/usr/bin/env zsh
|
|
|
|
export USER="${USER:-$USERNAME}"
|
|
|
|
# find editor
|
|
export EDITOR="nvim"
|
|
export VISUAL="$EDITOR"
|
|
alias edit="$EDITOR"
|
|
alias e="$EDITOR"
|
|
|
|
export CLICOLOR="1"
|