-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmac.fish
41 lines (31 loc) · 887 Bytes
/
mac.fish
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# path
set -x PATH /usr/local/sbin $PATH
set -x PATH /opt/homebrew/sbin /opt/homebrew/bin $PATH
set -x PATH $HOME/local/bin $PATH
# brew utils
set -x PATH /opt/homebrew/opt/[email protected]/bin $PATH
set -x PATH /opt/homebrew/opt/[email protected]/bin $PATH
# golang
set -x GOPATH /Users/hyoyoung/local/go
set -x GOROOT /opt/homebrew/opt/go/libexec
set -x PATH $PATH $GOPATH/bin $GOROOT/bin
# ncc
set -x PATH $PATH /Users/hyoyoung/local/n2c
# editor
set -x EDITOR vim
# cmd prompt
export PS1="\u@\h:\w\$ "
# Tell ls to be colourful
set -x CLICOLOR 1
set -x LSCOLORS "ExGxBxDxCxEgEdxbxgacxd"
# Tell grep to highlight matches
set -x GREP_OPTIONS '--color=auto'
# java dir path
set -x JAVA_HOME (/usr/libexec/java_home)
# add password manager
# source /usr/local/share/fish/vendor_completions.d/pass.fish
# for alacritty
set -e LC_CTYPE
set -x LANG ko_KR.UTF-8
alias ls='ls -Fh'
alias vi='vim'