2018-03-10 18:07:17 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-12-07 00:30:53 +00:00
|
|
|
# run units
|
|
|
|
systemctl --user daemon-reload
|
|
|
|
systemctl --user enable --now tmux.service
|
2019-04-04 23:37:38 +00:00
|
|
|
systemctl --user enable --now redshift.service
|
|
|
|
systemctl --user enable --now swayidle.service
|
2018-03-10 18:07:17 +00:00
|
|
|
|
2018-12-07 00:25:18 +00:00
|
|
|
# install tmux plugins
|
2018-12-07 00:29:05 +00:00
|
|
|
tmux run-shell ~/.tmux/plugins/tpm/bin/install_plugins
|
|
|
|
tmux run-shell ~/.tmux/plugins/tpm/bin/clean_plugins
|
2018-12-07 00:25:18 +00:00
|
|
|
|
2018-12-07 00:30:53 +00:00
|
|
|
# install vim plugins
|
|
|
|
vim -E +"call dein#update()" +"qall!" /dev/null &>/dev/null
|
2018-11-08 04:52:35 +00:00
|
|
|
|