1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-11-05 06:25:00 +00:00

Begin setup script w/ vim-plug install

This commit is contained in:
Phantop 2020-07-20 15:43:44 -04:00
parent 2e78fc9e15
commit 75bb1dd15b
2 changed files with 8 additions and 5 deletions

View file

@ -1,5 +0,0 @@
#!/usr/bin/fish
cd ~/.dotfiles
for i in (fd -t d)
mkdir -p ~/$i
end

8
.setup Executable file
View file

@ -0,0 +1,8 @@
#!/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