update p10k and add zsh-vi-mode plugin

This commit is contained in:
2021-09-10 12:28:10 -06:00
parent f9148ee417
commit 106074a9e0
4 changed files with 322 additions and 223 deletions

View File

@@ -13,6 +13,11 @@
url = "https://github.com/zsh-users/zsh-autosuggestions/archive/master.tar.gz" url = "https://github.com/zsh-users/zsh-autosuggestions/archive/master.tar.gz"
exact = true exact = true
stripComponents = 1 stripComponents = 1
[".oh-my-zsh/custom/plugins/zsh-vi-mode"]
type = "archive"
url = "https://github.com/jeffreytse/zsh-vi-mode/archive/master.tar.gz"
exact = true
stripComponents = 1
[".fzf"] [".fzf"]
type = "archive" type = "archive"
url = "https://github.com/junegunn/fzf/archive/master.tar.gz" url = "https://github.com/junegunn/fzf/archive/master.tar.gz"

View File

@@ -13,6 +13,11 @@
url = "https://github.com/zsh-users/zsh-autosuggestions/archive/master.tar.gz" url = "https://github.com/zsh-users/zsh-autosuggestions/archive/master.tar.gz"
exact = true exact = true
stripComponents = 1 stripComponents = 1
[".oh-my-zsh/custom/plugins/zsh-vi-mode"]
type = "archive"
url = "https://github.com/jeffreytse/zsh-vi-mode/archive/master.tar.gz"
exact = true
stripComponents = 1
[".fzf"] [".fzf"]
type = "archive" type = "archive"
url = "https://github.com/junegunn/fzf/archive/master.tar.gz" url = "https://github.com/junegunn/fzf/archive/master.tar.gz"

File diff suppressed because it is too large Load Diff

View File

@@ -16,7 +16,6 @@ export ZSH="$(echo $HOME)/.oh-my-zsh"
# to know which specific one was loaded, run: echo $RANDOM_THEME # to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="powerlevel10k/powerlevel10k" ZSH_THEME="powerlevel10k/powerlevel10k"
DISABLE_AUTO_UPDATE = true
# Set list of themes to pick from when loading at random # Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load # Setting this variable when ZSH_THEME=random will cause zsh to load
@@ -32,7 +31,7 @@ DISABLE_AUTO_UPDATE = true
# HYPHEN_INSENSITIVE="true" # HYPHEN_INSENSITIVE="true"
# Uncomment the following line to disable bi-weekly auto-update checks. # Uncomment the following line to disable bi-weekly auto-update checks.
# DISABLE_AUTO_UPDATE="true" DISABLE_AUTO_UPDATE="true"
# Uncomment the following line to automatically update without prompting. # Uncomment the following line to automatically update without prompting.
# DISABLE_UPDATE_PROMPT="true" # DISABLE_UPDATE_PROMPT="true"
@@ -81,6 +80,7 @@ plugins=(
fzf fzf
zsh-autosuggestions zsh-autosuggestions
zsh-syntax-highlighting zsh-syntax-highlighting
zsh-vi-mode
) )
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh