Added installer for server configurations
parent
465308cd6d
commit
a66921335f
@ -0,0 +1,17 @@
|
|||||||
|
- defaults:
|
||||||
|
link:
|
||||||
|
create: true
|
||||||
|
relink: true
|
||||||
|
force: true
|
||||||
|
|
||||||
|
- clean: ["~"]
|
||||||
|
|
||||||
|
- link:
|
||||||
|
~/.aliases: config/.aliases.sh
|
||||||
|
~/.config/nvim/init.vim: config/init.vim
|
||||||
|
|
||||||
|
- shell:
|
||||||
|
- [git submodule update --init --recursive, Installing submodules]
|
||||||
|
|
||||||
|
- create:
|
||||||
|
- ~/.config
|
@ -0,0 +1,7 @@
|
|||||||
|
# Neovim
|
||||||
|
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 +'PlugInstall --sync' +qa
|
||||||
|
|
||||||
|
cd ~/.local/share/nvim/plugged/YouCompleteMe && python3 install.py --all
|
Reference in new issue