doom: fix things

This commit is contained in:
Simon Gardling 2025-11-07 02:23:48 -05:00
parent 1ccafaf534
commit 711aa3e3e0
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
2 changed files with 14 additions and 8 deletions

View File

@ -143,7 +143,7 @@
json ; At least it ain't XML
;;janet ; Fun fact: Janet is me!
(java +lsp) ; the poster child for carpal tunnel syndrome
(javascript +lsp) ; all(hope(abandon(ye(who(enter(here))))))
(javascript +lsp +tree-sitter) ; all(hope(abandon(ye(who(enter(here))))))
;;julia ; a better, faster MATLAB
;;kotlin ; a better, slicker Java(Script)
;;latex ; writing papers in Emacs has never been so fun
@ -188,7 +188,7 @@
;;emms
;;everywhere ; *leave* Emacs!? You must be joking
;;irc ; how neckbeards socialize
(rss +org) ; emacs as an RSS reader
;;(rss +org) ; emacs as an RSS reader
:config
;;literate

View File

@ -23,13 +23,19 @@
enable = true;
doomDir = ./doom.d;
emacs = pkgs.emacs-unstable-pgtk;
extraPackages = epkgs: [
epkgs.dracula-theme
extraPackages =
epkgs:
[
epkgs.dracula-theme
]
++ (with pkgs; [
shellcheck
shfmt
pkgs.shellcheck
# for file search
fd
# for file search
pkgs.fd
];
pandoc
]);
};
}