emacs with tree-sitter and stuff
This commit is contained in:
parent
d02fba2d0e
commit
f32204ffce
|
@ -7,6 +7,8 @@ let
|
|||
rev = "39d889549f2b0b5c5392852daa862437e080a710";
|
||||
};
|
||||
in {
|
||||
# TODO: turn this into a FHS or package so these dependencies don't have to be
|
||||
# accessible from the global namespace.
|
||||
home.packages = with pkgs; [
|
||||
emacs
|
||||
enchant # spell checking
|
||||
|
@ -15,19 +17,22 @@ in {
|
|||
nodejs_24
|
||||
copilot-language-server-fhs
|
||||
cmake
|
||||
libtool
|
||||
gnumake
|
||||
gcc
|
||||
tree-sitter
|
||||
texlive.combined.scheme-full
|
||||
# tree-sitter-grammars.tree-sitter-c
|
||||
# tree-sitter-grammars.tree-sitter-cpp
|
||||
# tree-sitter-grammars.tree-sitter-zig
|
||||
# tree-sitter-grammars.tree-sitter-nix
|
||||
# tree-sitter-grammars.tree-sitter-toml
|
||||
# tree-sitter-grammars.tree-sitter-wgsl
|
||||
# tree-sitter-grammars.tree-sitter-rust
|
||||
# tree-sitter-grammars.tree-sitter-bash
|
||||
# tree-sitter-grammars.tree-sitter-elisp
|
||||
# tree-sitter-grammars.tree-sitter-markdown
|
||||
(tree-sitter.withPlugins (grammars: with grammars; [
|
||||
tree-sitter-bash
|
||||
tree-sitter-nix
|
||||
tree-sitter-toml
|
||||
tree-sitter-elisp
|
||||
tree-sitter-rust
|
||||
tree-sitter-cpp
|
||||
tree-sitter-c
|
||||
tree-sitter-zig
|
||||
tree-sitter-elisp
|
||||
tree-sitter-markdown
|
||||
]))
|
||||
];
|
||||
# xdg.configFile = {
|
||||
# "emacs" = {
|
||||
|
|
Loading…
Reference in a new issue