moved zsh config to rc

This commit is contained in:
Wryn Wagner 2020-09-16 21:06:44 -06:00
parent d005a40570
commit ec39e45f3e
2 changed files with 31 additions and 25 deletions

View File

@ -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

31
zsh/rc
View File

@ -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"