2018-03-10 18:07:17 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# install vim plugins
|
|
|
|
vim -E +"call dein#update()" +"qall!" /dev/null &>/dev/null
|
|
|
|
|
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
|
|
|
|
|
|
|
systemctl --user daemon-reload
|
|
|
|
systemctl --user enable --now tmux.service
|
|
|
|
systemctl --user enable --now mpv.service
|
2018-11-08 04:52:35 +00:00
|
|
|
|