diff --git a/.vim/undodir/%home%rmaco%projects%nvim_config%.git%COMMIT_EDITMSG b/.vim/undodir/%home%rmaco%projects%nvim_config%.git%COMMIT_EDITMSG index e3749a5..2511d92 100644 Binary files a/.vim/undodir/%home%rmaco%projects%nvim_config%.git%COMMIT_EDITMSG and b/.vim/undodir/%home%rmaco%projects%nvim_config%.git%COMMIT_EDITMSG differ diff --git a/.vim/undodir/%home%rmaco%projects%nvim_config%install.sh b/.vim/undodir/%home%rmaco%projects%nvim_config%install.sh new file mode 100644 index 0000000..3038c26 Binary files /dev/null and b/.vim/undodir/%home%rmaco%projects%nvim_config%install.sh differ diff --git a/install.sh b/install.sh index be9e0e7..6e74b9c 100644 --- a/install.sh +++ b/install.sh @@ -1,8 +1,9 @@ #!/bin/bash -git clone https://github.com/macocianradu/homefull-api.git -git clone https://github.com/macocianradu/homefull-gui.git -git clone https://github.com/macocianradu/setup.git +git clone https://github.com/macocianradu/homefull-api.git\ + ~/projects/homefull-api +git clone https://github.com/macocianradu/homefull-gui.git\ + ~/projects/homefull-gui git clone --depth 1 https://github.com/wbthomason/packer.nvim\ ~/.local/share/nvim/site/pack/packer/start/packer.nvim @@ -13,12 +14,12 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then /usr/ elif [[ "$OSTYPE" == "darwin"* ]]; then curl -LO https://github.com/neovim/neovim/releases/download/nightly/nvim-macos-arm64.tar.gz + mkdir ~/Applications/nvim tar xzf nvim-macos-arm64.tar.gz - ~/Applications/nvim/ + mv nvim-macos-arm64.tar.gz ~/Applications/nvim/ fi -cd nvim_config -ln -s ~/projects/nvim_config/.config/nvim ~/.config/nvim -ln -s ~/projects/nvim_config/.vim/undodir ~/.vim/undodir +ln -s ~/projects/setup/.config/nvim ~/.config/nvim +ln -s ~/projects/setup/.vim/undodir ~/.vim/undodir nvim --headless -c 'autocmd User PackerComplete quitall' -c 'PackerSync'