Skip to content

Commit

Permalink
workaround: Hard-code the node version which I use locally
Browse files Browse the repository at this point in the history
  • Loading branch information
Maverobot committed Dec 28, 2023
1 parent 75694ba commit 9b093d1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions spacemacs.org
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,10 @@ Use evil keybindings for selecting items in popup menus.
#+END_SRC
*** nvm
#+BEGIN_SRC emacs-lisp :tangle user-config.el
(condition-case nil
(nvm-use "v16.2.0")
(error (message "Could not initialize nvm for emacs.")))
;; TODO: use the default version instead of hard-coding the specific version
(condition-case err
(nvm-use "v19.1.0")
(error (message "Could not initialize nvm for emacs. %s" (error-message-string err))))
#+END_SRC
*** conf-mode
#+BEGIN_SRC emacs-lisp :tangle user-config.el
Expand Down

0 comments on commit 9b093d1

Please sign in to comment.