beluga and emacs w/ beluga

This commit is contained in:
nat 2025-06-18 02:45:22 -04:00
parent b0c590080c
commit d0ae6c0516
2 changed files with 1164 additions and 0 deletions

1150
emacs/beluga-mode.el Normal file

File diff suppressed because it is too large Load diff

View file

@ -9,6 +9,7 @@
home.homeDirectory = "/home/nat";
home.packages = with pkgs; [
julia-mono
beluga
bitwarden
gimp
godot
@ -42,6 +43,19 @@
};
};
programs.emacs =
let
emacsPath = ./emacs;
in {
enable = true;
extraConfig = "
(add-to-list 'load-path' \"${emacsPath}\")
(load \"beluga-mode.el\")
";
};
home.sessionVariables = {
EDITOR = "kak";
};