mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00:00
14 lines
303 B
Bash
14 lines
303 B
Bash
#!/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"
|
|
} |