This commit is contained in:
Tomas Mirchev 2025-08-26 12:31:47 +02:00
parent e829f6dd85
commit 38ad06b2b3
2 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# Change the prefix from 'C-b' to 'C-Space' # Change the prefix from 'C-b' to 'C-Space'
unbind C-b unbind C-b
set-option -g prefix C-f set-option -g prefix C-Space
bind-key C-f send-prefix bind-key C-Space send-prefix
set-option -g set-clipboard on set-option -g set-clipboard on

View File

@ -5,7 +5,7 @@ export PATH="$PATH:$HOME/bin"
export LANGUAGE="en_US:en" export LANGUAGE="en_US:en"
export LANG=en_US.UTF-8 export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8 export LC_ALL=en_US.UTF-8
export KUBECONFIG=~/.kube/config
autoload -Uz compinit && compinit # Autocomplete autoload -Uz compinit && compinit # Autocomplete
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' # Case Insensitive zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' # Case Insensitive
@ -77,5 +77,6 @@ alias gm='git merge'
alias grb='git rebase' alias grb='git rebase'
alias grs='git reset' alias grs='git reset'
alias grv='git remote -v' alias grv='git remote -v'
alias k='kubectl'
alias tree='tree -I node_modules' alias tree='tree -I node_modules'
alias vim=nvim