Compare commits

..

No commits in common. "d333116d7dbe6a0dac5f659fc43a0d7ea99897ae" and "5a125aeecdcb88dc2871ec1e19cb554e6a6831a0" have entirely different histories.

3 changed files with 9 additions and 14 deletions

1
.gitignore vendored
View file

@ -1,2 +1 @@
/compiled
antidote.plugins.zsh

21
.zshrc
View file

@ -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.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
@ -25,7 +21,7 @@ bindkey "^X^E" edit-command-line
### antibody
autoload -Uz compinit
compinit
#. ${HOME}/.config/zsh/antibody.zsh
. ${HOME}/.config/zsh/antibody.zsh
### antidote
. ~/.antidote/antidote.zsh
@ -300,7 +296,11 @@ fi
## 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
@ -428,12 +428,7 @@ function ,pkfr() {
# pkpr : extract clipboard content sent using the pkfr command
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.
[[ ! -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
View file

@ -0,0 +1 @@