mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-05 22:45:29 +00:00
9 lines
249 B
Plaintext
9 lines
249 B
Plaintext
|
#!/usr/bin/fish
|
||
|
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'
|
||
|
|
||
|
cd ~/.dotfiles
|
||
|
for i in (fd -t d)
|
||
|
mkdir -p ~/$i
|
||
|
end
|