- Timestamp:
- 07/25/08 13:52:51 (4 months ago)
- Location:
- dotfiles/emacs/junichiro
- Files:
-
- 7 modified
-
.emacs (modified) (1 diff)
-
.emacs.d/conf/init-common.el (modified) (2 diffs)
-
.emacs.d/conf/init-perl.el (modified) (1 diff)
-
.emacs.d/conf/init-php.el (modified) (1 diff)
-
.emacs.d/conf/init-pukiwiki.el (modified) (1 diff)
-
.emacs.d/conf/init-twitter.el (modified) (1 diff)
-
.emacs.d/conf/init-window.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dotfiles/emacs/junichiro/.emacs
r7450 r16402 16 16 (load "init-twitter") 17 17 (load "init-myfunc") 18 ;;(load "init-git") 19 ;;(load "init-actionscript") 18 20 ;;(load "init-w3m") 19 21 ;;(load "migemo-w3m") -
dotfiles/emacs/junichiro/.emacs.d/conf/init-common.el
r16400 r16402 26 26 ; emacs-server 27 27 (server-start) 28 (remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function) 28 29 29 30 ; tramp … … 57 58 ; elscreen 58 59 (require 'elscreen) 60 61 ; indent 62 (setq-default indent-tabs-mode nil) 63 64 ; ack 65 (defun ack () 66 (interactive) 67 (let ((grep-find-command "ack --nocolor --nogroup ")) 68 (call-interactively 'grep-find))) 69 70 ; タブや行末スペースを視覚化 71 ;----------------------------------------------------------- 72 (defface my-face-b-1 '((t (:background "gray"))) nil) 73 (defface my-face-b-2 '((t (:background "gray26"))) nil) 74 (defface my-face-u-1 '((t (:foreground "SteelBlue" :underline t))) nil) 75 (defvar my-face-b-1 'my-face-b-1) 76 (defvar my-face-b-2 'my-face-b-2) 77 (defvar my-face-u-1 'my-face-u-1) 78 79 (defadvice font-lock-mode (before my-font-lock-mode ()) 80 (font-lock-add-keywords 81 major-mode 82 '(("\t" 0 my-face-b-2 append) 83 (" " 0 my-face-b-1 append) 84 ("[ \t]+$" 0 my-face-u-1 append) 85 ))) 86 (ad-enable-advice 'font-lock-mode 'before 'my-font-lock-mode) 87 (ad-activate 'font-lock-mode) 88 ;------------------------------------------------------------ -
dotfiles/emacs/junichiro/.emacs.d/conf/init-perl.el
r16400 r16402 13 13 (setq cperl-indent-parens-as-block t) 14 14 (setq indent-tabs-mode nil) 15 (abbrev-mode 1)15 (abbrev-mode 1) 16 16 ;; (setq cperl-invalid-face nil) 17 17 (setq cperl-highlight-variables-indiscriminately t))) -
dotfiles/emacs/junichiro/.emacs.d/conf/init-php.el
r16400 r16402 10 10 (setq indent-tabs-mode nil))) 11 11 12 (require 'flymake-php) 13 (add-hook 'php-mode-user-hook 'flymake-php-load) 12 14 13 15 ;; (c-set-offset 'case-label '+) 14 16 ;; (add-hook 'php-mode-user-hook 15 17 ;; '(lambda () 16 ;; (progn 17 ;; (setq tab-width 4) 18 ;; (setq c-basic-offset 4) 19 ;; (setq c-hanging-comment-ender-p nil) 20 ;; (setq indent-tabs-mode nil)))) 21 22 23 24 25 18 ;; (progn 19 ;; (setq tab-width 4) 20 ;; (setq c-basic-offset 4) 21 ;; (setq c-hanging-comment-ender-p nil) 22 ;; (setq indent-tabs-mode nil)))) -
dotfiles/emacs/junichiro/.emacs.d/conf/init-pukiwiki.el
r7450 r16402 9 9 (setq 10 10 pukiwiki-site-list 11 '( ("wiki.e-3.jp"12 "http://wiki.e-3.jp/"13 nil euc-jp-dos)14 ) )15 11 '( 12 ("wiki.e-3.jp" "http://wiki.e-3.jp/" nil euc-jp-dos) 13 ("sanpowiki" "http://sanpowiki.seikatsusanpo.jp/" nil euc-jp) 14 ) 15 ) -
dotfiles/emacs/junichiro/.emacs.d/conf/init-twitter.el
r16401 r16402 2 2 (require 'twittering-mode) 3 3 (setq twittering-username "jun_ichiro") 4 (setq twittering-password "your-password") 4 (setq twittering-password "p4ssw0rd") 5 (twittering-scroll-mode t) 5 6 ; (twittering-icon-mode t) 6 7 -
dotfiles/emacs/junichiro/.emacs.d/conf/init-window.el
r7450 r16402 2 2 (setq default-frame-alist 3 3 (append (list 4 '(foreground-color . "#eeeeee")5 '(background-color . "#000033")6 '(border-color . "red")7 '(mouse-color . "#ffffff")8 '(cursor-color . "#ffff00")9 '(width . 130)10 '(height . 40);small-fontset11 '(top . 25)12 '(left . 210)13 '(vertical-scroll-bars . right))14 default-frame-alist))4 '(foreground-color . "#eeeeee") 5 '(background-color . "#000033") 6 '(border-color . "#ff0000") 7 '(mouse-color . "#ffffff") 8 '(cursor-color . "#ffff00") 9 '(width . 130) 10 '(height . 40);small-fontset 11 '(top . 25) 12 '(left . 210) 13 '(vertical-scroll-bars . right)) 14 default-frame-alist)) 15 15 (set-face-background 'modeline "#006600")
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)