mirror of
https://github.com/arkorty/Neolite.git
synced 2026-03-17 16:51:42 +00:00
13 lines
304 B
Bash
Executable File
13 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
|
|
~/.local/share/nvim/site/pack/packer/start/packer.nvim
|
|
|
|
[ -d "~/.config/nvim" ] && mv ~/.config/nvim ~/.config/nvim.bak
|
|
|
|
[ ! -d "~/.config/nvim" ] && mkdir -p ~/.config/nvim
|
|
|
|
cp -r init.lua lua ~/.config/nvim
|
|
|
|
nvim +PackerSync
|