I want globally enable whitespace-mode. I have tried this in my .emacs:
(require 'whitespace)
(setq-default whitespace-style '(face trailing lines empty indentation::space))
(setq-default whitespace-line-column 80)
(setq global-whitespace-mode 1)
(whitespace-mode 1)
but without success... I able to enable it via M+x whitespace-mode, but I want it to enable it globally... Any suggestions? I am using GNU Emacs 23.3.1 .
whitespace-mode
andglobal-whitespace-mode
are different minor modes. The former is buffer-local, the latter is not. If the buffer-local mode is enabled for a given buffer, the global mode will not have any effect on that buffer. – phils