1
0
Fork 0

added vim plugins, added missing newline and enabled zsh installation

This commit is contained in:
Kim, Jimin 2021-10-11 09:26:57 +09:00
parent 2eae320114
commit 7e2a2ad6c2

View file

@ -582,7 +582,7 @@ setup_vim() {
package_install \
vim-plug `# vim plugin manager` \
# todo: install plugins
cp .vimrc ~/.vimrc
}
setup_vlc() {
@ -628,6 +628,7 @@ setup_zsh() {
package_install \
oh-my-zsh-git `# for zsh plugins` \
zsh-theme-powerlevel10k `# make zsh look pretty` \
}
@ -719,6 +720,7 @@ options=(
"wireshark" "" off
"wps_office" "" off
"zoom" "" off
"zsh" "" off
)
# choose from available options
@ -783,6 +785,8 @@ for choice in $choices; do
setup_wps_office;;
"zoom")
setup_zoom;;
"zsh")
setup_zsh;;
esac
done