Skip to content

Commit

Permalink
Add packages
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed May 9, 2024
1 parent 9959b45 commit 12d9f51
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .zsh/.zcompctl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ fi
autoload -U compinit promptinit
compinit
promptinit; prompt gentoo

autoload -U +X bashcompinit && bashcompinit
autoload -Uz compinit && compinit
complete -o nospace -C /usr/bin/terraform terraform

zstyle ':completion:*:default' menu select=1
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'

[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
4 changes: 2 additions & 2 deletions .zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
#
# dot.zshrc
#
[ -f $HOME/.cargo/bin/sheldon ] && eval "$($HOME/.cargo/bin/sheldon --config-dir $ZDOTDIR/../sheldon source)"
[ -f $ZDOTDIR/.zaliases ] && source $ZDOTDIR/.zaliases
[ -f $ZDOTDIR/.zcompctl ] && source $ZDOTDIR/.zcompctl
[ -f $HOME/.cargo/bin/sheldon ] && eval "$($HOME/.cargo/bin/sheldon --config-dir $ZDOTDIR/../sheldon source)"

# Emacs style key binding
bindkey -e
Expand Down Expand Up @@ -61,7 +61,7 @@ fi
[ -f $ZDOTDIR/.zshrc.mine ] && source $ZDOTDIR/.zshrc.mine
[ -f $ZDOTDIR/eterm.zsh ] && source $ZDOTDIR/eterm.zsh

[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
eval "$(fzf --zsh)"

if which onedrive > /dev/null
then
Expand Down
17 changes: 15 additions & 2 deletions sheldon/plugins.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,18 @@ shell = "zsh"

# For example:
#
# [plugins.base16]
# github = "chriskempson/base16-shell"
[plugins.base16]
github = "chriskempson/base16-shell"

[plugins.zsh-autosuggestions]
github = "zsh-users/zsh-autosuggestions"

[plugins.zsh-syntax-highlighting]
github = "zsh-users/zsh-syntax-highlighting"

[plugins.enhancd]
github = "b4b4r07/enhancd"

[plugins.pure]
github = "sindresorhus/pure"
use = ["async.zsh", "pure.zsh"]

0 comments on commit 12d9f51

Please sign in to comment.