beave beta -> stable, discord -> discord canary, added zsh syntax highlighting
This commit is contained in:
parent
44c5e7c8b1
commit
5f0790b06d
2 changed files with 11 additions and 4 deletions
6
.zshrc
6
.zshrc
|
@ -1,6 +1,10 @@
|
|||
export ZSH="/home/pomp/.oh-my-zsh"
|
||||
ZSH_THEME="powerlevel10k/powerlevel10k"
|
||||
plugins=(git)
|
||||
plugins=(
|
||||
git
|
||||
zsh-interactive-cd
|
||||
zsh-syntax-highlighting
|
||||
)
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
export PATH="$PATH:$HOME/.yarn/bin"
|
||||
|
||||
|
|
9
setup.sh
9
setup.sh
|
@ -99,7 +99,7 @@ setup_blender() {
|
|||
|
||||
setup_brave() {
|
||||
package_install \
|
||||
brave-beta-browser \
|
||||
brave-bin \
|
||||
|
||||
# settings: DNS https cloudflare
|
||||
POST_INSTALL+=(
|
||||
|
@ -158,11 +158,11 @@ setup_discord() {
|
|||
# assumes that plugins are located in ~/.config/BetterDiscord/plugins
|
||||
|
||||
package_install \
|
||||
discord \
|
||||
discord-canary \
|
||||
betterdiscordctl-git `# BetterDiscord installer` \
|
||||
discord-overlay-git `# Discord voice chat overlay` \
|
||||
|
||||
betterdiscordctl install
|
||||
betterdiscordctl -f canary install
|
||||
|
||||
BD_PLUGINS=(
|
||||
134 # https://betterdiscord.app/plugin/Avatar%20Hover
|
||||
|
@ -628,6 +628,9 @@ setup_zsh() {
|
|||
# install powerlevel10k theme
|
||||
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
|
||||
|
||||
# install syntax highlighter
|
||||
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
|
||||
|
||||
cp .zshrc ~
|
||||
else
|
||||
log "zsh already configured. Skipping."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue