From 943cbf083f5d425c7dd5d2e041294f40f03b8cb3 Mon Sep 17 00:00:00 2001 From: Ninad Sachania Date: Sat, 19 Oct 2024 02:44:53 +0530 Subject: [PATCH] Remove the .git folder, so a user can add it to their own repo later --- install/terminal/app-neovim.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/terminal/app-neovim.sh b/install/terminal/app-neovim.sh index a5ea1a42..663cba58 100644 --- a/install/terminal/app-neovim.sh +++ b/install/terminal/app-neovim.sh @@ -11,6 +11,8 @@ cd - if [ ! -d "$HOME/.config/nvim" ]; then # Use LazyVim git clone https://github.com/LazyVim/starter ~/.config/nvim + # Remove the .git folder, so you can add it to your own repo later + rm -rf ~/.config/nvim/.git # Disable update notification popup in starter config sed -i 's/checker = { enabled = true }/checker = { enabled = true, notify = false }/g' ~/.config/nvim/lua/config/lazy.lua