-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
afx manages core plugin/command, aqua manages others.
- Loading branch information
Showing
6 changed files
with
145 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
github: | ||
- name: aquaproj/aqua | ||
description: | | ||
Declarative CLI Version manager written in Go. | ||
Support Lazy Install, Registry, and continuous update with Renovate. | ||
CLI version is switched seamlessly | ||
owner: aquaproj | ||
repo: aqua | ||
release: | ||
name: aqua | ||
tag: v2.16.1 | ||
command: | ||
env: | ||
AQUA_CONFIG: $XDG_CONFIG_HOME/aqua/aqua.yaml | ||
AQUA_PROGRESS_BAR: "true" | ||
AQUA_POLICY_CONFIG: $XDG_CONFIG_HOME/aqua/policy.yaml | ||
link: | ||
- from: "**/aqua" | ||
to: aqua | ||
alias: | ||
k: kubectl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
github: | ||
- name: zdharma-continuum/fast-syntax-highlighting | ||
description: Syntax-highlighting for Zshell | ||
owner: zdharma-continuum | ||
repo: fast-syntax-highlighting | ||
plugin: | ||
sources: | ||
- fast-syntax-highlighting.plugin.zsh | ||
- name: zsh-users/zsh-autosuggestions | ||
description: Fish-like autosuggestions for zsh | ||
owner: zsh-users | ||
repo: zsh-autosuggestions | ||
plugin: | ||
sources: | ||
- zsh-autosuggestions.zsh | ||
- name: zdharma-continuum/history-search-multi-word | ||
description: Multi-word history searcher for Zshell | ||
owner: zdharma-continuum | ||
repo: history-search-multi-word | ||
plugin: | ||
sources: | ||
- history-search-multi-word.plugin.zsh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# autoload | ||
autoload -Uz run-help | ||
autoload -Uz add-zsh-hook | ||
autoload -Uz colors && colors | ||
autoload -Uz compinit && compinit -u | ||
autoload -Uz is-at-least | ||
autoload -U +X bashcompinit && bashcompinit | ||
|
||
# LANGUAGE must be set by en_US | ||
export LANGUAGE="en_US.UTF-8" | ||
export LANG="${LANGUAGE}" | ||
export LC_ALL="${LANGUAGE}" | ||
export LC_CTYPE="${LANGUAGE}" | ||
|
||
# Editor | ||
export EDITOR=vim | ||
export CVSEDITOR="${EDITOR}" | ||
export SVN_EDITOR="${EDITOR}" | ||
export GIT_EDITOR="${EDITOR}" | ||
|
||
# Pager | ||
export PAGER=less | ||
# Less status line | ||
export LESS='-R -f -X -i -P ?f%f:(stdin). ?lb%lb?L/%L.. [?eEOF:?pb%pb\%..]' | ||
export LESSCHARSET='utf-8' | ||
|
||
# LESS man page colors (makes Man pages more readable). | ||
export LESS_TERMCAP_mb=$'\E[01;31m' | ||
export LESS_TERMCAP_md=$'\E[01;31m' | ||
export LESS_TERMCAP_me=$'\E[0m' | ||
export LESS_TERMCAP_se=$'\E[0m' | ||
export LESS_TERMCAP_so=$'\E[00;44;37m' | ||
export LESS_TERMCAP_ue=$'\E[0m' | ||
export LESS_TERMCAP_us=$'\E[01;32m' | ||
|
||
# ls command colors | ||
export LSCOLORS=exfxcxdxbxegedabagacad | ||
export LS_COLORS='di=34:ln=35:so=32:pi=33:ex=31:bd=46;34:cd=43;34:su=41;30:sg=46;30:tw=42;30:ow=43;30' | ||
|
||
export PATH=~/bin:/opt/homebrew/bin:$PATH | ||
|
||
# declare the environment variables | ||
export CORRECT_IGNORE='_*' | ||
export CORRECT_IGNORE_FILE='.*' | ||
|
||
#export WORDCHARS='*?[]~&;!#$%^(){}<>' | ||
#export WORDCHARS='*?.[]~&;!#$%^(){}<>' | ||
export WORDCHARS='*?_-.[]~=&;!#$%^(){}<>' | ||
|
||
# History file and its size | ||
export HISTFILE=~/.zsh_history | ||
export HISTSIZE=1000000 | ||
export SAVEHIST=1000000 | ||
# The size of asking history | ||
export LISTMAX=50 | ||
# Do not add in root | ||
if [[ $UID == 0 ]]; then | ||
unset HISTFILE | ||
export SAVEHIST=0 | ||
fi | ||
|
||
# fzf - command-line fuzzy finder (https://github.com/junegunn/fzf) | ||
export FZF_DEFAULT_OPTS="--extended --ansi --multi" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters