aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-01-12 20:38:26 +0000
committerYann Herklotz <git@yannherklotz.com>2020-01-12 20:38:26 +0000
commitf7839a30a8936d9c9c6f3eb95c2f28a14134af03 (patch)
tree63f6c9e3c56692256c4d61faef4cefd13e2a1529
parente44249f9eb97a76b9ec3b1aa70b209aae96f81d5 (diff)
downloaddotfiles-f7839a30a8936d9c9c6f3eb95c2f28a14134af03.tar.gz
dotfiles-f7839a30a8936d9c9c6f3eb95c2f28a14134af03.zip
Change C-b to C-o in tmux
-rw-r--r--tmux/.tmux.conf2
-rw-r--r--zsh/.zsh/export.zsh2
2 files changed, 3 insertions, 1 deletions
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf
index 904bb19..b2f198b 100644
--- a/tmux/.tmux.conf
+++ b/tmux/.tmux.conf
@@ -16,7 +16,7 @@ set -g lock-after-time 0
set -g lock-command "lock -np"
set -g message-command-style fg=yellow,bg=black
set -g message-style fg=black,bg=yellow
-set -g prefix C-b
+set -g prefix C-o
set -g prefix2 None
set -g renumber-windows off
set -g repeat-time 500
diff --git a/zsh/.zsh/export.zsh b/zsh/.zsh/export.zsh
index 206beb7..a395d92 100644
--- a/zsh/.zsh/export.zsh
+++ b/zsh/.zsh/export.zsh
@@ -1,4 +1,5 @@
export GITHUB_HOME=$HOME/Github
+export FZF_DEFAULT_COMMAND='fd --type file --hidden --no-ignore'
export ALTERNATE_EDITOR="emacs -nw -Q"
export EDITOR='emacsclient -nw'
export VISUAL='emacsclient -c'
@@ -11,6 +12,7 @@ export PATH="${PATH}:/opt/Xilinx/Vivado/2019.1/bin"
export PATH="${PATH}:/opt/intelFPGA_lite/18.1/quartus/bin"
export PATH="${HOME}/.local/bin:${PATH}"
export PATH="${HOME}/.cargo/bin:${PATH}"
+export PATH="${HOME}/.cabal/bin:${PATH}"
# Stop dotnet telemetry
export DOTNET_CLI_TELEMETRY_OPTOUT=1