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