summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcoat <coat@sadbeast.com>2021-12-16 19:29:17 -0600
committercoat <coat@sadbeast.com>2021-12-16 19:40:11 -0600
commit41af8da81f67f7b1629381544109cf413619e3c6 (patch)
tree60cadc18193dd9a15b0828a7b1d7eda9ac2622fa
parentbdbacd1b82c4d6ffbd5e5f258796df6a2902a56e (diff)
downloadcfg-41af8da81f67f7b1629381544109cf413619e3c6.tar.gz
cfg-41af8da81f67f7b1629381544109cf413619e3c6.tar.bz2
temp colors for fzf
-rw-r--r--.gitmodules3
m---------.vim/pack/git-plugins/start/vim-fakeclip0
-rw-r--r--.zshrc30
3 files changed, 33 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules
index 229351b..ae63425 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -46,3 +46,6 @@
[submodule ".vim/pack/git-plugins/start/fzf"]
path = .vim/pack/git-plugins/start/fzf
url = https://github.com/junegunn/fzf
+[submodule ".vim/pack/git-plugins/start/vim-fakeclip"]
+ path = .vim/pack/git-plugins/start/vim-fakeclip
+ url = https://github.com/kana/vim-fakeclip
diff --git a/.vim/pack/git-plugins/start/vim-fakeclip b/.vim/pack/git-plugins/start/vim-fakeclip
new file mode 160000
+Subproject 59858dabdb55787d7f047c4ab26b45f11ebb533
diff --git a/.zshrc b/.zshrc
index 25bdfc0..5616c51 100644
--- a/.zshrc
+++ b/.zshrc
@@ -48,3 +48,33 @@ alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'
eval "$(starship init zsh)"
source ~/.zsh_plugins.sh
+# Base16 Tomorrow Night
+# Author: Chris Kempson (http://chriskempson.com)
+
+_gen_fzf_default_opts() {
+
+local color00='#1d1f21'
+local color01='#282a2e'
+local color02='#373b41'
+local color03='#969896'
+local color04='#b4b7b4'
+local color05='#c5c8c6'
+local color06='#e0e0e0'
+local color07='#ffffff'
+local color08='#cc6666'
+local color09='#de935f'
+local color0A='#f0c674'
+local color0B='#b5bd68'
+local color0C='#8abeb7'
+local color0D='#81a2be'
+local color0E='#b294bb'
+local color0F='#a3685a'
+
+export FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS"\
+" --color=bg+:$color01,bg:$color00,spinner:$color0C,hl:$color0D"\
+" --color=fg:$color04,header:$color0D,info:$color0A,pointer:$color0C"\
+" --color=marker:$color0C,fg+:$color06,prompt:$color0A,hl+:$color0D"
+
+}
+
+_gen_fzf_default_opts