summaryrefslogtreecommitdiff
path: root/.emacs
diff options
context:
space:
mode:
Diffstat (limited to '.emacs')
-rw-r--r--.emacs6
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs b/.emacs
index 0b5d15e..6aa5873 100644
--- a/.emacs
+++ b/.emacs
@@ -82,8 +82,8 @@
82(add-to-list 'load-path "~/.emacs.d/lisp/") 82(add-to-list 'load-path "~/.emacs.d/lisp/")
83 83
84;; PHP 84;; PHP
85(autoload 'php-mode "php-mode" "Mode for editing PHP source files") 85;;(autoload 'php-mode "php-mode" "Mode for editing PHP source files")
86(add-to-list 'auto-mode-alist '("\\.\\(inc\\|php[s34]?\\)" . php-mode)) 86;;(add-to-list 'auto-mode-alist '("\\.\\(inc\\|php[s34]?\\)" . php-mode))
87 87
88;; Lua 88;; Lua
89(autoload 'lua-mode "lua-mode" "Lua editing mode." t) 89(autoload 'lua-mode "lua-mode" "Lua editing mode." t)
@@ -99,7 +99,7 @@
99(add-hook 'python-mode-hook 99(add-hook 'python-mode-hook
100 (lambda () 100 (lambda ()
101 (progn 101 (progn
102 (setq whitespace-line-column 80) 102 (setq whitespace-line-column 79)
103 (setq whitespace-style '(face empty tabs lines-tail trailing)) 103 (setq whitespace-style '(face empty tabs lines-tail trailing))
104 (whitespace-mode)))) 104 (whitespace-mode))))
105 105