From fbc60d9ec3bccf75034e80a5255b2175be6b7a83 Mon Sep 17 00:00:00 2001 From: vaibhav-mattoo Date: Fri, 22 Aug 2025 09:52:10 -0500 Subject: [PATCH] run omarchy lazyvim install if nvim present without any config (#807) --- install/development/nvim.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/development/nvim.sh b/install/development/nvim.sh index e8e8560a..0227836d 100644 --- a/install/development/nvim.sh +++ b/install/development/nvim.sh @@ -1,6 +1,6 @@ #!/bin/bash -if ! command -v nvim &>/dev/null; then +if ! command -v nvim &>/dev/null || [ ! -d "$HOME/.config/nvim" ]; then yay -S --noconfirm --needed nvim luarocks tree-sitter-cli # Install LazyVim