I am using js2-mode to edit Javascript in Emacs, but I can\'t seem to get it to stop using tabs instead of spaces for indentation. My other modes work fine, just having issues w
Add this to your .emacs file somewhere after you load js2 mode:
.emacs
(setq js2-mode-hook '(lambda () (progn (set-variable 'indent-tabs-mode nil))))