Skip to content

Commit

Permalink
dev: enable rust dev for emacs as well
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborpilz committed Nov 27, 2023
1 parent dde3ce9 commit 2469e94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions home/config/doom/init.el
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
;; gist ; interacting with github gists
;; (lookup +dictionary +docsets +offline) ; navigate your code and its documentation
(lookup +docsets)
(lsp +peek) ; M-x vscode
(lsp +peek)
(magit +forge) ; a git porcelain for Emacs
make ; run make tasks from Emacs
(pass +auth) ; password manager for nerds
Expand Down Expand Up @@ -186,7 +186,7 @@
(rest) ; Emacs as a REST client
rst ; ReST in peace
(ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
;;rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
(rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
;;scala ; java, but good
;;(scheme +guile) ; a fully conniving family of lisps
sh ; she sells {ba,z,fi}sh shells on the C xor
Expand Down
3 changes: 2 additions & 1 deletion home/modules/dev/rust.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ in
config = lib.mkIf cfg.enable {
# Packages for rust development
home.packages = with pkgs; [
rustup
rustup # contains rustc, cargo, rustdoc, rustfmt, etc.
cargo-watch # cargo subcommand for watching files and running commands
];
};
}

0 comments on commit 2469e94

Please sign in to comment.