Skip to content

Commit

Permalink
Add php mode, cursor as bar, and safe theme
Browse files Browse the repository at this point in the history
  • Loading branch information
plumlee committed Jun 9, 2014
1 parent 0f2b829 commit 2905554
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .emacs
Expand Up @@ -4,6 +4,7 @@
inhibit-startup-message t)

(setq visible-bell 'top-bottom)
(modify-all-frames-parameters (list (cons 'cursor-type 'bar)))

(require 'package)
(add-to-list 'package-archives
Expand Down Expand Up @@ -390,6 +391,8 @@
(add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.hbs$" . web-mode))
(add-to-list 'auto-mode-alist '("\\.css?\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.php?\\'" . web-mode))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CSS
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Expand Down Expand Up @@ -514,3 +517,17 @@

(provide '.emacs)
;;; .emacs ends here
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-safe-themes
(quote
("d677ef584c6dfc0697901a44b885cc18e206f05114c8a3b7fde674fce6180879" default))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)

0 comments on commit 2905554

Please sign in to comment.