aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com>2023-03-15 15:15:03 +0100
committerAnhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com>2023-03-15 15:15:03 +0100
commitd00b85784e69cc185575d0273cd1472e5e0d57a4 (patch)
treed9fb3f9bc6c3d573209c78d0893eef0c3b52c5ec /install.sh
parentc3389bca33ce5007ebfcca55f8ae3a80995771bc (diff)
feat(vim) vim config and update install.sh and update.sh
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh24
1 files changed, 20 insertions, 4 deletions
diff --git a/install.sh b/install.sh
index 3eeccd4..d625603 100644
--- a/install.sh
+++ b/install.sh
@@ -1,6 +1,9 @@
-cp $HOME/dotfiles/config/polybar/config.ini $HOME/.config/polybar/config.ini
-cp $HOME/dotfiles/config/i3/config $HOME/.config/i3/config
-cp $HOME/dotfiles/config/picom/picom.conf $HOME/.config/picom/picom.conf
+dotfiles=$HOMES/dotfiles
+
+cp $dotfiles/config/polybar/config.ini $HOME/.config/polybar/config.ini
+cp $dotfiles/config/i3/config $HOME/.config/i3/config
+cp $dotfiles/config/picom/picom.conf $HOME/.config/picom/picom.conf
+sudo cp $dotfiles/etc/lightdm/slick-greeter.conf /etc/lightdm/slick-greeter.conf
# Install yay
git clone https://aur.archlinux.org/yay.git
@@ -10,10 +13,23 @@ cd ..
rm -fr yay/
# Install basic apps
-yay -Sy snap amberol flatpak picom-jonaburg-git polybar rofi feh xbindkeys alacritty fish xclip
+yay -Sy snap flatpak picom-jonaburg-git polybar rofi feh xbindkeys alacritty fish xclip
+flatpak install io.bassi.Amberol
# Install oh my fish and setup the fish's theme
curl https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install | fish
omf install slacker && omf theme slacker
+# Install vim config
+cp $dotfiles/.vimrc $HOME/.vimrc
+mkdir -p $HOME/.vim/colors $HOME/.vim/autoload
+# Install vundle
+git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
+# Install all vim plugins
+vim +PluginInstall +qall
+
+# Install vim theme
+curl https://raw.githubusercontent.com/joshdick/onedark.vim/main/colors/onedark.vim > $HOME/.vim/colors/onedark.vim
+curl https://raw.githubusercontent.com/joshdick/onedark.vim/main/autoload/onedark.vim > $HOME/.vim/autoload/onedark.vim
+