Skip to content

Commit

Permalink
Export variables so they can be used immediately
Browse files Browse the repository at this point in the history
  • Loading branch information
jloh committed Sep 12, 2020
1 parent fbbaf2a commit daf551b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions init/10_vars.fish
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
#!/usr/bin/env fish

# Set VIM as our default editor
set -U EDITOR 'vim'
set -U VISUAL "$EDITOR"
set -Ux EDITOR 'vim'
set -Ux VISUAL "$EDITOR"

# LS colors and misc commands
#set -U LSCOLORS 'gaxxxxxxcxxxxxxxxxxxxx'

# Prevent less from clearing the screen while still showing colors.
set -U LESS 'eFRX'
set -Ux LESS 'eFRX'

# Golang path
set -Ux GOPATH "$HOME/code/go"

0 comments on commit daf551b

Please sign in to comment.