mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-05 06:25:00 +00:00
27 lines
447 B
Bash
Executable file
27 lines
447 B
Bash
Executable file
#!/bin/bash
|
|
sudo eopkg it -c system.devel
|
|
sudo eopkg it fish neovim qutebrowser stow
|
|
|
|
cd ~/.dotfiles
|
|
for i in `fd -t d -H`
|
|
do
|
|
mkdir -p ~/$i
|
|
done
|
|
|
|
stow .
|
|
|
|
cd .config/mpv/scripts
|
|
for i in */
|
|
do
|
|
cd $i
|
|
make
|
|
cd ..
|
|
done
|
|
|
|
|
|
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
|
nvim +PlugUpdate +q +q
|
|
|
|
fish -c fisher
|