How to configure Emacs (v 23) with nxhtml to follow Kohana coding standards?

639 Views Asked by At

I am trying to configure Emacs v23 to follow Kohana coding standards for PHP. I am using Emacs with nxhtml plugin.

I can see the indent-tabs-mode is set to t in the buffer, but when I press tab to indent the code, I see two spaces are inserted not the TAB character.

What could be wrong?

Here the content of my .emacs:

(server-start)
;;php mode
(add-hook 'nxhtml-mumamo-mode-hook
        (lambda ()
        (setq indent-tabs-mode t)
        ))

(load "/home/sabya/install/emacs-stuff/nxhtml/autostart.el")
2

There are 2 best solutions below

0
On BEST ANSWER

This was a bug in mumamo, now fixed.

0
On

In your .emacs that should do the job:

(setq c-default-style "bsd"
      c-basic-offset 4)