From ec39e45f3e6d3f907e0bd84a3b5681c4fe7f759c Mon Sep 17 00:00:00 2001 From: Wryn Wagner Date: Wed, 16 Sep 2020 21:06:44 -0600 Subject: [PATCH] moved zsh config to rc --- zsh/config | 25 ------------------------- zsh/rc | 31 +++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 25 deletions(-) delete mode 100644 zsh/config diff --git a/zsh/config b/zsh/config deleted file mode 100644 index b8a98af..0000000 --- a/zsh/config +++ /dev/null @@ -1,25 +0,0 @@ -# The following lines were added by compinstall -zstyle ':completion:*' completer _complete _ignored _approximate -zstyle ':completion:*' max-errors 4 -zstyle :compinstall filename '/home/w0ryn/.zshrc' - -autoload -Uz compinit -compinit -# End of lines added by compinstall - -# Lines configured by zsh-newuser-install -HISTFILE=~/.histfile -HISTSIZE=1000 -SAVEHIST=1000 -setopt appendhistory autocd beep notify -unsetopt nomatch -bindkey -v -# End of lines configured by zsh-newuser-install - - -zmodload -i zsh/complist; -bindkey -M menuselect '^M' .accept-line; - -# Completion for Kitty -kitty + complete setup zsh | source /dev/stdin - diff --git a/zsh/rc b/zsh/rc index 8f8cfc2..a50f9c1 100644 --- a/zsh/rc +++ b/zsh/rc @@ -1,4 +1,35 @@ #!/bin/zsh +# +# + +# The following lines were added by compinstall +zstyle ':completion:*' completer _complete _ignored _approximate +zstyle ':completion:*' max-errors 4 +zstyle :compinstall filename '/home/w0ryn/.zshrc' + +autoload -Uz compinit +compinit +# End of lines added by compinstall + +# Lines configured by zsh-newuser-install +HISTFILE=~/.histfile +HISTSIZE=1000 +SAVEHIST=1000 +setopt appendhistory autocd beep notify +unsetopt nomatch +bindkey -v +# End of lines configured by zsh-newuser-install + + +zmodload -i zsh/complist; +bindkey -M menuselect '^M' .accept-line; + +# Completion for Kitty +kitty + complete setup zsh | source /dev/stdin + +# +# + source "$HOME/.wryn/env/env.zsh" RC_DIR="$DOTWRYN/zsh"