Skip to content

Commit

Permalink
some tools suggested by doom doctor
Browse files Browse the repository at this point in the history
  • Loading branch information
loganlinn committed Oct 10, 2024
1 parent cce6380 commit 98f882d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 15 deletions.
1 change: 1 addition & 0 deletions darwin/modules/emacs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
# "with-no-frame-refocus" # disables frame re-focus (ie. closing one frame does not refocus another one)
];
}
"pngpaste" # :lang org
];
}
44 changes: 29 additions & 15 deletions nix/home/doom/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@
pkgs: with pkgs; {
":app irc" = [ gnutls ];

":checkers spell +aspell" = [
(aspellWithDicts (
ds: with ds; [
en
en-computers
en-science
]
))
];
# ":checkers spell +aspell" = [
# (aspellWithDicts (
# ds: with ds; [
# en
# en-computers
# en-science
# ]
# ))
# ];

":checkers spell +hunspell" = [ hunspell ];

":editor format" = [ nodePackages.prettier ];

Expand All @@ -29,28 +31,40 @@ pkgs: with pkgs; {

":emacs undo" = [ zstd ];

# ":lang clojure +lsp" = [ clojure-lsp ];
# ":lang cc" = [ glslang ];

# ":lang clojure" = [ cljfmt clojure-lsp ];

":lang docker" = [ dockfmt ];

# ":lang elixir +lsp" = [ elixir-ls ];

# ":lang go +lsp" = [ gopls ];
":lang go" = [
gomodifytags
gopls
gore
gotests
];

# ":lang java +lsp" = [ java-language-server ];

":lang javascript" = [ nodePackages.prettier ];

":lang latex" = [ texlive.combined.scheme-medium ];

":lang markdown" = [ python3Packages.grip ];

":lang org +gnuplot" = [ gnuplot ];

":lang org +pandoc" = [ pandoc ];

":lang org +roam" = [ sqlite ];

":lang plantuml" = [ plantuml ];

":lang sh +lsp" = [ bash-language-server ];

":lang sh" = [
shellcheck
shfmt
];
":lang sh" = [ shellcheck shfmt ];

# ":lang terraform" = [ terraform ];

Expand Down

0 comments on commit 98f882d

Please sign in to comment.