-
Notifications
You must be signed in to change notification settings - Fork 1
/
.zsh.exports
56 lines (35 loc) · 1.24 KB
/
.zsh.exports
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env bash
# Environment Variables -----------------------------------
export EDITOR=$(which nvim)
# anki messes up if this is not disabled
export QT_AUTO_SCREEN_SCALE_FACTOR=0
# default region for aws/sam
export AWS_REGION=us-west-2
# disable homebrew update before install
export HOMEBREW_NO_AUTO_UPDATE=1
# some weird warning nvim was throwing about locales
export LC_ALL=en_US.UTF-8
# enable buildkit integration while doing docker build
export DOCKER_BUILDKIT=1
# enable `go mod` support in golang
export GO111MODULE=on
# How many lines of history to keep in memory
export HISTSIZE=5000
# Where to save history to disk
export HISTFILE=~/.zsh_history
# Number of history entries to save to disk
export SAVEHIST=8000
# Erase duplicates in the history file
export HISTDUP=erase
# use nvim for reading manpages
export MANPAGER="nvim +Man! -c 'set ft=man' -"
export FZF_DEFAULT_OPTS="--color='bw' --height=20% --layout='reverse'"
export FZF_DEFAULT_COMMAND='ag --hidden --ignore .git -l -g ""'
export TERM=xterm-256color
export NVIM_HOME="~/.config/nvim"
export SDK_DPI_SCALE=0.5
export SDK_SCALE=2
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
# color for history suggestions
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=#5e5d5d'