|
Revision 8035, 343 bytes
(checked in by xcezx, 5 years ago)
|
- dotfiles/emacs/xcezx/: flymake-perl.el が上手く動いていなかったのを修正。その他細々とした変更。
- modified: .emacs
- modified: .emacs.d/config.anything.el
- modified: .emacs.d/config.base.el
- modified: .emacs.d/config.css.el
- modified: .emacs.d/config.flymake.el
- modified: .emacs.d/config.javascript.el
- modified: .emacs.d/config.miscs.el
- modified: .emacs.d/config.mmm.el
- modified: .emacs.d/config.perl.el
- modified: .emacs.d/config.php.el
- new file: .emacs.d/config.ruby.el
- modified: .emacs.d/config.yaml.el
- new file: .emacs.d/config.yasnippet.el
- deleted: .emacs.d/elisp/flymake-perl.el
- deleted: .emacs.d/elisp/flymake-php.el
- new file: .emacs.d/misc/php-functions.txt
|
| Line | |
|---|
| 1 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|---|
| 2 | ;;;; For CSS |
|---|
| 3 | |
|---|
| 4 | ;; css-mode.el: http://www.garshol.priv.no/download/software/css-mode/css-mode.el |
|---|
| 5 | (autoload 'css-mode "css-mode") |
|---|
| 6 | (add-to-list 'auto-mode-alist '("\\.css" . css-mode)) |
|---|
| 7 | (setq cssm-indent-function #'cssm-c-style-indenter) |
|---|
| 8 | (setq cssm-mirror-mode nil) |
|---|