Switch from antigen to znap

master
David Holland 2021-04-20 01:11:01 +02:00
parent 4e2cb4f8a1
commit b278a1608d
Signed by: DustVoice
GPG Key ID: 47068995A14EDCA9
9 changed files with 28 additions and 2121 deletions

7
.antigen/.gitignore vendored
View File

@ -1,7 +0,0 @@
/*
/*/
!/.gitignore
!/antigen.zsh
!/themes/

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +0,0 @@
/*
/*/
!/.gitignore
!/dustvoice.zsh-theme

View File

@ -1,10 +0,0 @@
# user, host, full path, and time/date
# on two lines for easier vgrepping
# entry in a nice long thread on the Arch Linux forums: https://bbs.archlinux.org/viewtopic.php?pid=521888#p521888
PROMPT=$'%b%{$fg[yellow]%}%n@%{$fg[magenta]%}%M %{$fg[green]%}%~
%{$fg_bold[white]%}%(!.#.$)%{$reset_color%} '
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[blue]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%} %{$fg[red]%}X"
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}"

View File

@ -1,16 +0,0 @@
antigen use oh-my-zsh
antigen bundle colored-man-pages
antigen bundle colorzie
antigen bundle command-not-found
antigen bundle git
antigen bundle history-substring-search
antigen bundle zsh-users/zsh-completions
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle softmoth/zsh-vim-mode
antigen theme $ADOTDIR/themes dustvoice
antigen apply

3
.gitignore vendored
View File

@ -2,7 +2,6 @@
/*/
!/.gitignore
!/.antigenrc
!/.bashrc
!/.gitconfig
!/.nvidia-xinitrc
@ -21,9 +20,9 @@
!/.zshrc
!/README.md
!/.antigen/
!/.config/
!/.gnupg/
!/.weechat/
!/.ssh/
!/.znap/
!/Wallpapers/

3
.znap/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/*
/*/
!/.gitignore

@ -0,0 +1 @@
Subproject commit 47aa418bdf8f6f73ce2159d1bb7e02047c8fc6fb

47
.zshrc
View File

@ -1,28 +1,13 @@
# Path to your oh-my-zsh installation.
export ADOTDIR="$HOME/.antigen"
export ZDOTDIR="$HOME/.znap"
ANTIGEN_ZSH="$ADOTDIR/antigen.zsh"
ANTIGENRC="$HOME/.antigenrc"
ANTIGEN_LOG="$ADOTDIR/antigen.log"
ZNAPDIR="$ZDOTDIR/zsh-snap"
ZNAP_ZSH="$ZNAPDIR/znap.zsh"
ZNAP_LOG="$ADOTDIR/antigen.log"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="dustvoice"
# Uncomment the following line to enable command auto-correction.
ENABLE_CORRECTION="true"
# Uncomment the following line to display red dots whilst waiting for completion.
COMPLETION_WAITING_DOTS="true"
# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# You can set one of the optional three formats:
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# or set a custom format using the strftime function format specifications,
# see 'man strftime' for details.
HIST_STAMPS="yyyy-mm-dd"
HISTSIZE=1000000
@ -33,11 +18,13 @@ setopt HIST_IGNORE_DUPS
setopt HIST_IGNORE_ALL_DUPS
setopt COMPLETE_ALIASES
if [[ -a $ANTIGEN_ZSH && -a $ANTIGENRC ]]; then
if [[ -a $ZNAP_ZSH ]]; then
ZSH_AUTOSUGGEST_USE_ASYNC="true"
ZSH_AUTOSUGGEST_STRATEGY=(history)
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE=fg=5
ZSH_HIGHLIGHT_HIGHLIGHTERS=( main brackets )
MODE_CURSOR_DEFAULT="white blinking bar"
MODE_CURSOR_VICMD="white steady block"
MODE_CURSOR_VIINS="white blinking bar"
@ -45,14 +32,26 @@ if [[ -a $ANTIGEN_ZSH && -a $ANTIGENRC ]]; then
MODE_CURSOR_REPLACE="red steady underline"
MODE_CURSOR_VISUAL="white steady block"
source $ANTIGEN_ZSH
KEYTIMEOUT=5
antigen init $ANTIGENRC
source $ZNAP_ZSH
znap source ohmyzsh/ohmyzsh lib/{git,theme-and-appearance,colored-man-pages,colorzie,command-not-found,history}
znap prompt dustvoice/dustvoice-zsh-theme
znap source zsh-users/zsh-completions
znap source zsh-users/zsh-autosuggestions
znap source zsh-users/zsh-syntax-highlighting
znap source zsh-users/zsh-history-substring-search
znap source softmoth/zsh-vim-mode
bindkey -M vicmd '^K' history-substring-search-up
bindkey -M vicmd '^J' history-substring-search-down
KEYTIMEOUT=5
else
PS1=$'%b%n@%M %~
%(!.#.$) '