all repos — dotfiles @ c4d107e799393869752b629868ca934fee325921

my *nix dotfiles

Got rid of oh-my-zsh

Good riddance.

Signed-off-by: Anirudh <icyph0x@pm.me>
Anirudh icyph0x@pm.me
Wed, 27 Mar 2019 15:04:33 +0530
commit

c4d107e799393869752b629868ca934fee325921

parent

81be9c0bd5daee14d6a7c0ea72aafd755fd4881a

1 files changed, 16 insertions(+), 11 deletions(-)

jump to
M zsh/.zshrczsh/.zshrc

@@ -16,21 +16,20 @@ export INPUTRC=~/.inputrc

export PATH=$PATH:$HOME/Leet/Nim/bin export PATH=$PATH:$HOME/.nimble/bin +# zsh setup +autoload -Uz compinit colors add-zsh-hook +colors +compinit +zstyle ':completion:*' list-colors "di=34" +zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' +export ZLE_REMOVE_SUFFIX_CHARS='' +setopt extended_glob autocd + # theme specefic _nicy_prompt() { PROMPT=$("$HOME/Dotfiles/zsh/prompt") } -precmd_functions+=_nicy_prompt -_nicy_prompt -COMPLETION_WAITING_DOTS="true" - -# plugins -plugins=(git zsh-autosuggestions zsh-syntax-highlighting k) - -# sourced scripts -source $ZSH/oh-my-zsh.sh -source /usr/share/autojump/autojump.zsh -source $HOME/.aliases +add-zsh-hook precmd _nicy_prompt # end and home keys bindkey "^[[1~" beginning-of-line

@@ -44,3 +43,9 @@ [ -n "$PS1" ] && \

[ -s "$BASE16_SHELL/profile_helper.sh" ] && \ eval "$("$BASE16_SHELL/profile_helper.sh")" +# sourced scripts +source /usr/share/autojump/autojump.zsh +source $HOME/.aliases +source $HOME/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +source $HOME/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh +source $HOME/.zsh/git.zsh