7 lines
122 B
Bash
7 lines
122 B
Bash
#!/usr/bin/env bash
|
|
|
|
export PATH=$HOME/.local/share/bin/:$PATH
|
|
|
|
if which vim >/dev/null 2>&1; then
|
|
export EDITOR=vim
|
|
fi
|