pinwheel: Add eglot-booster to emacs

This commit is contained in:
Alexander Heldt
2024-07-01 12:24:48 +02:00
parent 75ca66c2b3
commit 1cd0e127ac
2 changed files with 18 additions and 0 deletions

View File

@@ -524,6 +524,10 @@ Setup prefix for keybindings.
(scala-mode . alex/format-on-save)
)
)
(use-package eglot-booster
:after eglot
:config (eglot-booster-mode))
#+END_SRC
** Eldoc-box
#+BEGIN_SRC emacs-lisp

View File

@@ -7,10 +7,23 @@ let
alwaysEnsure = true;
alwaysTangle = true;
extraEmacsPackages = epkgs: [
epkgs.flymake-go-staticcheck
epkgs.tree-sitter-langs
epkgs.treesit-grammars.with-all-grammars
(epkgs.trivialBuild {
pname = "eglot-booster";
version = "main-2024-04-11";
src = pkgs.fetchFromGitHub {
owner = "jdtsmith";
repo = "eglot-booster";
rev = "e19dd7ea81bada84c66e8bdd121408d9c0761fe6";
hash = "sha256-vF34ZoUUj8RENyH9OeKGSPk34G6KXZhEZozQKEcRNhs=";
};
})
];
};
@@ -37,6 +50,7 @@ in
ec
emacs
pkgs.wl-clipboard
pkgs.emacs-lsp-booster
];
};