Reputation: 1615
What should I put in .spacemacs so that web-mode
will be enabled instead of php-mode
for .blade.php
files in Laravel?
Upvotes: 3
Views: 2228
Reputation: 2685
Place the following in your $HOME/.spacemacs file, in the dotspacemacs/user-config
function:
(add-to-list 'auto-mode-alist '("\\.blade.php\\'" . web-mode))
Upvotes: 8