Index: helix-loader/src/grammar.rs
--- helix-loader/src/grammar.rs.orig
+++ helix-loader/src/grammar.rs
@@ -85,6 +85,13 @@ pub fn get_language(name: &str) -> Result<Language> {
     Ok(language)
 }
 
+#[cfg(target_os = "openbsd")]
+pub fn fetch_grammars() -> Result<()> {
+    println!("Command to fetch grammars disabled");
+    Ok(())
+}
+
+#[cfg(not(target_os = "openbsd"))]
 pub fn fetch_grammars() -> Result<()> {
     // We do not need to fetch local grammars.
     let mut grammars = get_grammar_configs()?;
