Compare commits
No commits in common. "d333116d7dbe6a0dac5f659fc43a0d7ea99897ae" and "5a125aeecdcb88dc2871ec1e19cb554e6a6831a0" have entirely different histories.
d333116d7d
...
5a125aeecd
3 changed files with 9 additions and 14 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1 @@
|
||||||
/compiled
|
/compiled
|
||||||
antidote.plugins.zsh
|
|
||||||
|
|
21
.zshrc
21
.zshrc
|
@ -1,7 +1,3 @@
|
||||||
# Enable profiling
|
|
||||||
if ! [ -z $ZSHDEBUG ]; then
|
|
||||||
zmodload zsh/zprof
|
|
||||||
fi
|
|
||||||
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
||||||
# Initialization code that may require console input (password prompts, [y/n]
|
# Initialization code that may require console input (password prompts, [y/n]
|
||||||
# confirmations, etc.) must go above this block; everything else may go below.
|
# confirmations, etc.) must go above this block; everything else may go below.
|
||||||
|
@ -25,7 +21,7 @@ bindkey "^X^E" edit-command-line
|
||||||
### antibody
|
### antibody
|
||||||
autoload -Uz compinit
|
autoload -Uz compinit
|
||||||
compinit
|
compinit
|
||||||
#. ${HOME}/.config/zsh/antibody.zsh
|
. ${HOME}/.config/zsh/antibody.zsh
|
||||||
|
|
||||||
### antidote
|
### antidote
|
||||||
. ~/.antidote/antidote.zsh
|
. ~/.antidote/antidote.zsh
|
||||||
|
@ -300,7 +296,11 @@ fi
|
||||||
|
|
||||||
## Colored manual
|
## Colored manual
|
||||||
|
|
||||||
alias man="env PAGER=\"bat -l man -p\" man"
|
function color_man() {
|
||||||
|
man $@ | bat -p --language="man"
|
||||||
|
}
|
||||||
|
|
||||||
|
alias man="color_man"
|
||||||
|
|
||||||
## Local only
|
## Local only
|
||||||
|
|
||||||
|
@ -428,12 +428,7 @@ function ,pkfr() {
|
||||||
# pkpr : extract clipboard content sent using the pkfr command
|
# pkpr : extract clipboard content sent using the pkfr command
|
||||||
alias ,pkpr='piknik -paste | tar xzpvf -'
|
alias ,pkpr='piknik -paste | tar xzpvf -'
|
||||||
|
|
||||||
|
# vim: set ft=zsh et sw=0 ts=2 sts=0:
|
||||||
|
|
||||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
|
|
||||||
# Run profiling
|
|
||||||
if ! [ -z $ZSHDEBUG ]; then
|
|
||||||
zprof
|
|
||||||
fi
|
|
||||||
|
|
||||||
# vim: set ft=zsh et sw=0 ts=2 sts=0:
|
|
||||||
|
|
1
antidote.plugins.zsh
Normal file
1
antidote.plugins.zsh
Normal file
|
@ -0,0 +1 @@
|
||||||
|
|
Loading…
Reference in a new issue