Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每次我用 Spacemacs 打开一个 .js 文件时,默认模式都是web-mode. 但我想要的是react-mode。
web-mode
react-mode
有没有办法做到这一点?谢谢。
我从#4751中找到了一些信息。
我们可以简单地添加(add-to-list 'auto-mode-alist '("\\.js\\'" . react-mode))到docspacemacs/user-configin .spacemacs。
(add-to-list 'auto-mode-alist '("\\.js\\'" . react-mode))
docspacemacs/user-config
.spacemacs