mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-23 07:13:25 +00:00
Setup: use bash and get fish (and mkdir dots)
This commit is contained in:
parent
c8239a742f
commit
c24fbbad25
15
.setup
15
.setup
|
@ -1,25 +1,26 @@
|
||||||
#!/usr/bin/fish
|
#!/bin/bash
|
||||||
sudo eopkg it -c system.devel
|
sudo eopkg it -c system.devel
|
||||||
sudo eopkg it stow
|
sudo eopkg it fish neovim qutebrowser stow
|
||||||
|
|
||||||
cd ~/.dotfiles
|
cd ~/.dotfiles
|
||||||
for i in (fd -t d)
|
for i in `fd -t d -H`
|
||||||
|
do
|
||||||
mkdir -p ~/$i
|
mkdir -p ~/$i
|
||||||
end
|
done
|
||||||
|
|
||||||
stow .
|
stow .
|
||||||
|
|
||||||
|
|
||||||
cd .config/mpv/scripts
|
cd .config/mpv/scripts
|
||||||
for i in */
|
for i in */
|
||||||
|
do
|
||||||
cd $i
|
cd $i
|
||||||
make
|
make
|
||||||
cd ..
|
cd ..
|
||||||
end
|
done
|
||||||
|
|
||||||
|
|
||||||
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
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'
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
||||||
nvim +PlugUpdate +q +q
|
nvim +PlugUpdate +q +q
|
||||||
|
|
||||||
getfisher
|
fish -c getfisher
|
||||||
|
|
Loading…
Reference in a new issue