diff options
| -rw-r--r-- | .zshrc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -3,6 +3,12 @@ export LANG=ja_JP.UTF-8 export VISUAL=nvim export EDITOR=nvim +if type open >/dev/null 2>&1; then + export BROWSER=open +elif type xdg-open >/dev/null 2>&1; then + export BROWSER=xdg-open +fi + export LSCOLORS=exfxcxdxbxegedabagacad export LS_COLORS='di=34:ln=35:so=32:pi=33:ex=31:bd=46;34:cd=43;34:su=41;30:sg=46;30:tw=42;30:ow=43;30' |
