diff --git a/.config/neofetch/config.conf b/.config/neofetch/config.conf index 2584950..9cd8c79 100644 --- a/.config/neofetch/config.conf +++ b/.config/neofetch/config.conf @@ -8,7 +8,7 @@ print_info() { info "Host" model info "Kernel" kernel info "Uptime" uptime - info "Packages" packages + # info "Packages" packages info "Shell" shell info "Resolution" resolution info "DE" de diff --git a/.config/zsh/keybinds.zsh b/.config/zsh/keybinds.zsh index 2b9e771..b76e87e 100644 --- a/.config/zsh/keybinds.zsh +++ b/.config/zsh/keybinds.zsh @@ -1,8 +1,10 @@ -WORDCHARS='~!#$%^&*(){}[]<>?.+;-' -MOTION_WORDCHARS='~!#$%^&*(){}[]<>?.+;-/' +WORDCHARS='~!#$%^&*(){}[]<>?+;' +MOTION_WORDCHARS='~!#$%^&*(){}[]<>?+;' ''{back,for}ward-word() WORDCHARS=$MOTION_WORDCHARS zle .$WIDGET bindkey '^[[1;3C' forward-word bindkey '^[[1;3D' backward-word +bindkey '^[[1;5C' forward-word +bindkey '^[[1;5D' backward-word bindkey '^[^?' backward-kill-word diff --git a/.zshrc b/.zshrc index dfa740c..3d1a1e7 100644 --- a/.zshrc +++ b/.zshrc @@ -6,12 +6,13 @@ compinit # End of lines added by compinstall # Lines configured by zsh-newuser-install HISTFILE=~/.histfile -HISTSIZE=1000 -SAVEHIST=1000 +HISTSIZE=10000 +SAVEHIST=10000 bindkey -e # End of lines configured by zsh-newuser-install -export PATH="/usr/local/ubin:$HOME/bin:$HOME/go/bin:$HOME/anaconda3/bin:$PATH" +export PATH="/usr/local/ubin:$HOME/bin:$HOME/go/bin:$HOME/.cargo/bin:$HOME/anaconda3/bin:$PATH:/usr/local/cuda/bin" +export EDITOR="vim" ZSH_CONFIG="$HOME/.config/zsh" source "$ZSH_CONFIG/functions"