Add omarchy-doctor

This commit is contained in:
Ryan Hughes
2025-09-28 00:41:37 -04:00
parent 0b172dbef1
commit 57a977a51d
40 changed files with 1032 additions and 356 deletions

View File

@@ -1,3 +1,14 @@
if [[ ! -d "$HOME/.config/nvim" ]]; then
omarchy-lazyvim-setup
fi
#!/bin/bash
# Installation function
omarchy_install() {
if [[ ! -d "$HOME/.config/nvim" ]]; then
omarchy-lazyvim-setup
fi
}
# Verification function
omarchy_verify() {
# Check if neovim config exists
[[ -d "$HOME/.config/nvim" ]] || add_error "Neovim config directory missing"
}