Step 141: Emacs daemon config

This commit is contained in:
Bill
2026-02-09 17:47:26 -07:00
parent a35e76cb36
commit f031004cab
10 changed files with 189 additions and 27 deletions

View File

@@ -169,9 +169,9 @@ private:
const char* home = std::getenv("USERPROFILE");
if (!home) home = std::getenv("HOME");
if (home) {
emacsConfigPath_ = (std::filesystem::path(home) / ".emacs.d").string();
emacsConfigPath_ = (std::filesystem::path(home) / ".emacs.d" / "init.el").string();
} else {
emacsConfigPath_ = ".emacs.d";
emacsConfigPath_ = ".emacs.d/init.el";
}
}