mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-05 14:34:47 +00:00
23 lines
362 B
Fish
Executable file
23 lines
362 B
Fish
Executable file
#!/usr/bin/fish
|
|
cd ~/.dotfiles
|
|
for i in (fd -t d)
|
|
mkdir -p ~/$i
|
|
end
|
|
|
|
stow .
|
|
|
|
|
|
cd .config/mpv/scripts
|
|
for i in */
|
|
cd $i
|
|
make
|
|
cd ..
|
|
end
|
|
|
|
|
|
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
|
|
|
|
getfisher
|