dotfiles/.setup

23 lines
362 B
Plaintext
Raw Normal View History

2020-07-20 19:43:44 +00:00
#!/usr/bin/fish
2020-07-20 20:51:01 +00:00
cd ~/.dotfiles
for i in (fd -t d)
mkdir -p ~/$i
end
stow .
2020-07-20 20:59:55 +00:00
cd .config/mpv/scripts
for i in */
cd $i
make
cd ..
end
2020-07-20 19:43:44 +00:00
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'
2020-07-20 20:17:10 +00:00
nvim +PlugUpdate +q +q
2020-07-21 14:42:02 +00:00
getfisher