]> git.netwichtig.de Git - user/henk/vcsh/zsh.git/blobdiff - .zshrc
fix: explanation what that setting is for
[user/henk/vcsh/zsh.git] / .zshrc
diff --git a/.zshrc b/.zshrc
index 7ec7ff69f85ef04eedfc2ef8526424ca546c5f0e..ba4bf8623ad49090e230010f860f57192f7255aa 100644 (file)
--- a/.zshrc
+++ b/.zshrc
@@ -2,20 +2,17 @@
 # zmodload zsh/zprof
 
 
-# exports are usually independent and standalone
-# so they can stay at the top
+# settings for the zsh don’t get exported
 
 # where to write history
-export HISTFILE=~/.zsh_history
-export HISTSIZE=1000000000
-export SAVEHIST=1000000000
-
-export ANSIBLE_NOCOWS=1
-export ANSIBLE_STRATEGY=mitogen_linear
+HISTFILE=~/.zsh_history
+HISTSIZE=1000000000
+SAVEHIST=1000000000
 
-# what is that for exactly? maybe taskwarrior? or timewarrior?
+# print time needed for execution when it takes longer than this value
 REPORTTIME=10
 
+
 ## define word characters (for stuff like backward-word, forward-word, backward-kill-word,..)
 ## these are NOT separators but chars considered part of a word
 #WORDCHARS='*?_-.[]~=/&;!#$%^(){}<>' # the default
@@ -23,13 +20,6 @@ REPORTTIME=10
 # zsh you-should-use
 export YSU_MODE=ALL
 
-# I want sbin executables available
-export PATH=${PATH}:/usr/local/sbin:/sbin:/usr/sbin
-export PATH=${PATH}:~/bin
-
-# colors for newt/whiptail (for debconf, needrestart, etc.)
-# works better with selenized colorscheme
-export NEWT_COLORS='checkbox=yellow,;roottext=yellow,'
 
 # where zsh looks for functions
 fpath=(~/.zsh_functions $fpath)
@@ -172,10 +162,11 @@ zgenom load 'https://github.com/MichaelAquilina/zsh-you-should-use'
 source ~/.zsh_local
 
 # TODO break this up
-source ~/.env_*
-
+for f in ~/.env_*(N)
+do
+       source $f
+done
 
-typeset -U path
 
 #zle -N zle-line-init
 #zle -N zle-keymap-select
@@ -194,6 +185,21 @@ zgenom load 'https://github.com/nojhan/liquidprompt'
 # see https://github.com/zsh-users/zsh-syntax-highlighting
 source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
 
+source /usr/share/doc/fzf/examples/key-bindings.zsh
+source /usr/share/doc/fzf/examples/completion.zsh
+
+# Use fd (https://github.com/sharkdp/fd) instead of the default find
+# command for listing path candidates.
+# - The first argument to the function ($1) is the base path to start traversal
+# - See the source code (completion.{bash,zsh}) for the details.
+_fzf_compgen_path() {
+  fdfind --hidden --follow --exclude ".git" . "$1"
+}
+
+# Use fd to generate the list for directory completion
+_fzf_compgen_dir() {
+  fdfind --type d --hidden --follow --exclude ".git" . "$1"
+}
 
 # commands to run after initialization is complete
 #task awaiting