-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexports
53 lines (46 loc) · 1.29 KB
/
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
# vim: ft=sh
_gen_fzf_default_opts() {
local base03="234"
local base02="235"
local base01="240"
local base00="241"
local base0="244"
local base1="245"
local base2="254"
local base3="230"
local yellow="136"
local orange="166"
local red="160"
local magenta="125"
local violet="61"
local blue="33"
local cyan="37"
local green="64"
# Comment and uncomment below for the light theme.
# # Solarized Dark color scheme for fzf
# export FZF_DEFAULT_OPTS="
# --color fg:-1,bg:-1,hl:$blue,fg+:$base2,bg+:$base02,hl+:$blue
# --color info:$yellow,prompt:$yellow,pointer:$base3,marker:$base3,spinner:$yellow
# "
# Solarized Light color scheme for fzf
export FZF_DEFAULT_OPTS="
--color fg:-1,bg:-1,hl:$blue,fg+:$base02,bg+:$base2,hl+:$blue
--color info:$yellow,prompt:$yellow,pointer:$base03,marker:$base03,spinner:$yellow
"
}
_gen_fzf_default_opts
export LESS="-RFX"
export CLICOLOR=1
export CLICOLOR_FORCE=1
export LSCOLORS=gxfxbEaEBxxEhEhBaDaCaD
if [ -x "$(command -v gdircolors)" ]; then
eval `gdircolors ~/.dir_colors`
fi
if [ -x "$(command -v dircolors)" ]; then
eval `dircolors ~/.dir_colors`
fi
if [ -x "/Applications/MacVim.app/Contents/MacOS/Vim" ]; then
export EDITOR="/Applications/MacVim.app/Contents/MacOS/Vim"
else
export EDITOR=vim
fi