Skip to content

Commit

Permalink
tweak doom
Browse files Browse the repository at this point in the history
  • Loading branch information
viperML committed Feb 26, 2024
1 parent 0375031 commit a217d73
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hosts/zorah/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ in

# homeModules.emacs
homeModules.guix
# homeModules.emacs-doom
homeModules.emacs-doom
];
}

Expand Down
11 changes: 10 additions & 1 deletion modules/home-manager/emacs-doom/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{ pkgs
, inputs
, config
, ...
}:
Expand All @@ -12,7 +11,17 @@
emacs-all-the-icons-fonts
fd
ripgrep
parinfer-rust
];

home.sessionPath = [
"$HOME/.config/emacs/bin"
];

home.file = {
".emacs".source = config.lib.file.mkOutOfStoreSymlink "/var/empty/emacs";
".emacs.d".source = config.lib.file.mkOutOfStoreSymlink "/var/empty/emacs";
};

xdg.configFile."doom".source = config.lib.file.mkOutOfStoreSymlink "${config.unsafeFlakePath}/modules/home-manager/emacs-doom";
}
4 changes: 2 additions & 2 deletions modules/home-manager/emacs-doom/init.el
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
;;lispy ; vim for lisp, for people who don't like vim
;;multiple-cursors ; editing in many places at once
;;objed ; text object editing for the innocent
;;parinfer ; turn lisp into python, sort of
parinfer ; turn lisp into python, sort of
;;rotate-text ; cycle region at point between text candidates
snippets ; my elves. They type so I don't have to
;;word-wrap ; soft wrapping with language-aware indent
Expand Down Expand Up @@ -153,7 +153,7 @@
;;nim ; python + lisp at the speed of c
;;nix ; I hereby declare "nix geht mehr!"
;;ocaml ; an objective camel
org ; organize your plain life in plain text
(org +dragndrop +pretty) ; organize your plain life in plain text
;;php ; perl's insecure younger brother
;;plantuml ; diagrams for confusing people more
;;purescript ; javascript, but functional
Expand Down

0 comments on commit a217d73

Please sign in to comment.