Enable emacs-lsp-booster
This commit is contained in:
parent
d8f1e5318a
commit
88ada5d28d
3 changed files with 15 additions and 0 deletions
|
@ -48,6 +48,7 @@ in
|
||||||
kdePackages.qtwayland
|
kdePackages.qtwayland
|
||||||
copilot-node-server
|
copilot-node-server
|
||||||
math-preview
|
math-preview
|
||||||
|
emacs-lsp-booster
|
||||||
]
|
]
|
||||||
++ (with hunspellDicts; [
|
++ (with hunspellDicts; [
|
||||||
en_US-large
|
en_US-large
|
||||||
|
|
|
@ -37,6 +37,10 @@
|
||||||
(consult-eglot-embark-mode)
|
(consult-eglot-embark-mode)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
(use-package eglot-booster
|
||||||
|
:after eglot
|
||||||
|
:config (eglot-booster-mode))
|
||||||
|
|
||||||
(use-package emacs
|
(use-package emacs
|
||||||
:bind (("<mouse-4>" . scroll-down-line)
|
:bind (("<mouse-4>" . scroll-down-line)
|
||||||
("<mouse-5>" . scroll-up-line)
|
("<mouse-5>" . scroll-up-line)
|
||||||
|
|
|
@ -98,6 +98,16 @@ let
|
||||||
};
|
};
|
||||||
deps = [ ];
|
deps = [ ];
|
||||||
};
|
};
|
||||||
|
eglot-booster = buildEmacsPackage {
|
||||||
|
name = "eglot-booster";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "jdtsmith";
|
||||||
|
repo = "eglot-booster";
|
||||||
|
rev = "e6daa6bcaf4aceee29c8a5a949b43eb1b89900ed";
|
||||||
|
hash = "sha256-PLfaXELkdX5NZcSmR1s/kgmU16ODF8bn56nfTh9g6bs=";
|
||||||
|
};
|
||||||
|
deps = [ ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# *List* containing emacs packages from (M)ELPA
|
# *List* containing emacs packages from (M)ELPA
|
||||||
|
|
Loading…
Add table
Reference in a new issue