aboutsummaryrefslogtreecommitdiffstats
path: root/zsh
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-07-03 12:43:58 +0200
committerYann Herklotz <git@yannherklotz.com>2021-07-03 12:43:58 +0200
commita8fd139a791364b8484b9f82669bd31a0f55153e (patch)
tree67de19d91f0de51a6917105a7b0587bafe2da04f /zsh
parent3bde28128b255274d4067411ff45790d1c92b3bf (diff)
downloaddotfiles-a8fd139a791364b8484b9f82669bd31a0f55153e.tar.gz
dotfiles-a8fd139a791364b8484b9f82669bd31a0f55153e.zip
Update configurations
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zsh/export.zsh2
-rw-r--r--zsh/.zshrc7
2 files changed, 6 insertions, 3 deletions
diff --git a/zsh/.zsh/export.zsh b/zsh/.zsh/export.zsh
index a4392bc..8186e73 100644
--- a/zsh/.zsh/export.zsh
+++ b/zsh/.zsh/export.zsh
@@ -38,6 +38,8 @@ prepend_path "${HOME}/.local/bin"
append_path "/opt/Xilinx/Vivado/2019.1/bin"
append_path "/opt/intelFPGA_lite/18.1/quartus/bin"
+append_path "$HOME/projects/vericert/bin"
+append_path "/opt/bin"
export PATH
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 8f7c2ae..a8739a9 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -27,9 +27,11 @@ setopt HIST_FIND_NO_DUPS
if [ -d ~/.cache/wal ]; then (cat ~/.cache/wal/sequences &) fi
+export MINIMAL_MAGIC_ENTER=no
+
# Sourcing everything
-if [ -e /usr/share/fzf/key-bindings.zsh ]; then source /usr/share/fzf/key-bindings.zsh; fi
-if [ -e /usr/share/fzf/completion.zsh ]; then source /usr/share/fzf/completion.zsh; fi
+#if [ -e /usr/share/fzf/key-bindings.zsh ]; then source /usr/share/fzf/key-bindings.zsh; fi
+#if [ -e /usr/share/fzf/completion.zsh ]; then source /usr/share/fzf/completion.zsh; fi
if [ -e $HOME/.zsh/export.zsh ]; then source $HOME/.zsh/export.zsh; fi
if [ -e $HOME/.zsh/minimal.zsh ]; then source $HOME/.zsh/minimal.zsh; fi
if [ -e $HOME/.zsh/function.zsh ]; then source $HOME/.zsh/function.zsh; fi
@@ -40,4 +42,3 @@ bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down
bindkey -M emacs '^P' history-substring-search-up
bindkey -M emacs ^N history-substring-search-down
-