-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv
37 lines (28 loc) · 1007 Bytes
/
env
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
# -*- mode: sh -*-
export LC_ALL="en_US.UTF-8"
export LANG="en_US.UTF-8"
export LANGUAGE="en_US.UTF-8"
export EDITOR="vim"
export GPG_TTY=$(tty)
export PATH="${PATH}:${DOTFILES_DIR}/scripts"
# Golang
##############################################
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
export GHOME=$GOPATH/src/github.com/albttx
# Ruby
##############################################
export PATH=$PATH:$HOME/.gem/ruby/2.7.0/bin
# Rust
##############################################
export PATH=$PATH:$HOME/.cargo/bin
# FZF
##############################################
export FZF_DEFAULT_OPTS='--height 40% --layout=reverse'
#export FZF_DEFAULT_COMMAND='fd --type f --hidden --follow --exclude node_modules --exclude .git'
# https://github.com/urbainvaes/fzf-marks
# ctrl-g, to see the list of matches
# ctrl-y, to jump to a match;
# ctrl-t, to toggle a match for deletion;
# ctrl-d, to delete selected matches.
source $GOPATH/src/github.com/urbainvaes/fzf-marks/fzf-marks.plugin.zsh