9 lines
190 B
Plaintext
9 lines
190 B
Plaintext
|
#!/bin/sh
|
||
|
export BROWSER=firefox
|
||
|
export EDITOR=nvim
|
||
|
export VISUAL=nvim
|
||
|
|
||
|
export XDG_CONFIG_HOME="$HOME/.config"
|
||
|
export XDG_DATA_HOME="$HOME/.local/share"
|
||
|
export XDG_CACHE_HOME="$HOME/.cache"
|