all repos — nixfiles @ a04964835bdde663ce69cddcd696bf043c2ec7f3

System and user configuration, managed by nix and home-manager

emacs: remove add-node-modules-path (use direnv)
Alan Pearce alan@alanpearce.eu
Sun, 23 Jun 2024 15:29:48 +0200
commit

a04964835bdde663ce69cddcd696bf043c2ec7f3

parent

84d05b287083f8754d6b3871a7577997444f4b97

2 files changed, 0 insertions(+), 14 deletions(-)

jump to
M user/emacs/init.eluser/emacs/init.el
@@ -1212,16 +1212,6 @@ (if lsp-mode       (call-interactively #'consult-lsp-symbols)
     (call-interactively #'consult-eglot-symbols)))
 
-;; Inside a javascript project, it's common to install tools locally to
-;; the project.  This will allows emacs to find their executables.
-
-(use-package add-node-modules-path
-  :config (setq add-node-modules-max-depth 6)
-  :ghook ('(feature-mode-hook
-            js-base-mode-hook
-            json-ts-mode-hook
-            typescript-ts-mode-hook)
-          #'add-node-modules-path))
 
 ;;;; Reformat on save
 
M user/settings/development/javascript.nixuser/settings/development/javascript.nix
@@ -23,10 +23,6 @@ };     };
   };
 
-  programs.emacs.extraPackages = epkgs: (with epkgs; [
-    add-node-modules-path
-  ]);
-
   home.shellAliases = {
     bn = "bun";
     bni = "bun install";