X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=dot-files%2F_emacs_el;h=26ee810616136c42330956572321abae9ba3fab7;hb=dda067a85fc8ff68b7ed8d94f93c0d6351705707;hp=d0920c1934dee2bc58dcb4f29063f3840fc23b42;hpb=8a6fc00b5ee8beb6f281a6be8a9a91691bf5a139;p=sugar.git diff --git a/dot-files/_emacs_el b/dot-files/_emacs_el index d0920c1..26ee810 100644 --- a/dot-files/_emacs_el +++ b/dot-files/_emacs_el @@ -19,7 +19,8 @@ (setq read-file-name-completion-ignore-case t) (tool-bar-mode nil) -(global-set-key "\C-\\" 'toggle-input-method) +(global-set-key (kbd "C-\\" ) 'toggle-input-method) +(global-set-key (kbd "C-RET") 'completion-at-point) (unless window-system (normal-erase-is-backspace-mode t)) @@ -45,13 +46,14 @@ (cond ((equal host "aria.cielonegro.org") (progn ;; Use firefox as the default browser. - (setq browse-url-firefox-program "/opt/local/bin/firefox") + (setq browse-url-firefox-program "/usr/pkg/bin/firefox") ;; Specify how to connect to some of the remote servers. (setq tramp-default-proxies-alist nil) - (add-to-list 'tramp-default-proxies-alist - '("rd8" nil "/sshx:pho@yebisu1.ymir.jp:")) - (add-to-list 'tramp-default-proxies-alist - '("yebisu1\\.ymir\\.jp" nil "/sshx:pho@boss:")))))) + (mapcar #'(lambda (proxy) + (add-to-list 'tramp-default-proxies-alist proxy)) + '( ("rd8" nil "/sshx:pho@seras.vpn.cielonegro.org:") + ("pho\\.dev\\.office\\.ymir\\.co\\.jp" nil "/sshx:pho@seras.vpn.cielonegro.org:") + )))))) ;; Settings for Browser -------------------------------------------------------- (setq browse-url-browser-function 'w3m-browse-url) @@ -134,6 +136,9 @@ ;; ditz (require-if-present 'ditz) +;; mediawiki +(require-if-present 'mediawiki) + ;; jaspace (require-if-present 'jaspace) @@ -168,6 +173,7 @@ ;; elscreen (load "elscreen" "ElScreen" t) +(elscreen-start) (require-if-present 'elscreen-w3m) ;; undo-tree @@ -185,6 +191,11 @@ (append '(("\\.rst$" . rst-mode) ("\\.rest$" . rst-mode)) auto-mode-alist)) +;; textile-mode +(autoload 'textile-mode "textile-mode" + "Major mode for editing Textile documents." t) +(add-to-list 'auto-mode-alist '("\\.textile\\'" . textile-mode)) + ;; xsltxt-mode (autoload 'xsltxt-mode "xsltxt-mode" "Major mode for xsltxt." t) (add-to-list 'auto-mode-alist '("\\.xsltxt$" . xsltxt-mode)) @@ -193,6 +204,14 @@ (autoload 'lua-mode "lua-mode" "Lua editing mode." t) (add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode)) +;; scala-mode2 +(add-to-list 'load-path "~/sandbox/_scala/scala-mode2") +(require-if-present 'scala-mode2) + +;; sbt-mode +(add-to-list 'load-path "~/sandbox/_scala/sbt-mode") +(require-if-present 'sbt-mode) + ;; twittering-mode (require-if-present 'twittering-mode) (setq twittering-username "phonohawk") @@ -200,11 +219,11 @@ ;; riece (autoload 'riece "riece" "Start Riece" t) (add-hook 'riece-after-load-startup-hook - #'(lambda () - (add-to-list 'riece-addons 'riece-alias) - (add-to-list 'riece-addons 'riece-skk-kakutei) - (add-to-list 'riece-addons 'riece-keyword) - (add-to-list 'riece-addons 'riece-ctlseq))) + #'(lambda () + (add-to-list 'riece-addons 'riece-alias) + (add-to-list 'riece-addons 'riece-skk-kakutei) + (add-to-list 'riece-addons 'riece-keyword) + (add-to-list 'riece-addons 'riece-ctlseq))) ;; CEDET (add-to-list 'load-path "/usr/pkg/share/emacs/cedet/common") @@ -261,6 +280,11 @@ (add-to-list 'auto-mode-alist '("\\.js$" . js2-mode)) (add-to-list 'auto-mode-alist '("\\.json$" . javascript-mode)) +;; vimrc +(autoload 'vimrc-mode "vimrc-mode" + "Major mode for editing `.vimrc', `xxx.vim' and `.exrc' files." t) +(add-to-list 'auto-mode-alist '("\\.vim\\(rc\\)?$" . vimrc-mode)) + ;; ido (require 'ido) (ido-mode t) @@ -339,7 +363,6 @@ (setq cperl-indent-parens-as-block t) ;; Erlang -(add-to-list 'load-path "/usr/pkg/lib/erlang/lib/tools-2.6/emacs") (require-if-present 'erlang-start) (setq erlang-electric-commands nil) @@ -365,6 +388,7 @@ ;; migemo (require-if-present 'migemo) +(setq migemo-isearch-enable-p nil) ;; tiarra-conf (setq load-path (cons (expand-file-name "~/sandbox/Tiarra") load-path)) @@ -381,11 +405,27 @@ "Major mode for editing comma-separated value files." t) (add-to-list 'auto-mode-alist '("\\.[Cc][Ss][Vv]\\'" . csv-mode)) +;; tsv-mode +(autoload 'tsv-mode "tsv-mode" "A mode to edit table like file" t) +(autoload 'tsv-normal-mode "tsv-mode" "A minor mode to edit table like file" t) +(setq tsv-write-annotation nil) +(setq tsv-separator-list '("\t")) +(add-to-list 'auto-mode-alist '("\\.[Tt][Ss][Vv]\\'" . tsv-mode)) + ;; yaml-mode (autoload 'yaml-mode "yaml-mode" "Major mode for editing YAML files." t) (add-to-list 'auto-mode-alist '("\\.ya?ml$" . yaml-mode)) +;; Troublesome Tasks +(if (equal (system-name) "seras") + (progn + (defun edit-troublesome-tasks () + (interactive) + (elscreen-create) + (find-file (expand-file-name "~/var/troublesome-tasks.txt"))) + (define-key ctl-x-map "MT" #'edit-troublesome-tasks))) + ;; ChangeLog (setq user-full-name "PHO") (setq user-mail-address "pho@cielonegro.org") @@ -417,13 +457,13 @@ ;; Emacs Calc (add-hook 'calc-start-hook - (lambda () - (if (functionp 'paren-deactivate) - (paren-deactivate)))) + (lambda () + (if (functionp 'paren-deactivate) + (paren-deactivate)))) (add-hook 'calc-end-hook - (lambda () - (if (functionp 'paren-activate) - (paren-activate)))) + (lambda () + (if (functionp 'paren-activate) + (paren-activate)))) ;;; emacs-w3m (autoload 'w3m "w3m" "Interface for w3m on Emacs." t) @@ -446,10 +486,10 @@ ;; emacs auto edit (put 'narrow-to-region 'disabled nil) (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-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. '(Info-additional-directory-list (quote ("/sw/share/info" "/usr/local/info" "/usr/local/share/info"))) '(ac-ignore-case nil) '(appt-display-format (quote window)) @@ -472,7 +512,6 @@ '(ecb-tree-buffer-style (quote ascii-guides)) '(ecb-windows-width 0.2) '(elscreen-display-tab t) - '(global-whitespace-mode t) '(haskell-program-name "ghci") '(ido-enable-flex-matching t) '(ido-everywhere t) @@ -489,13 +528,15 @@ '(js2-indent-on-enter-key nil) '(js2-mirror-mode nil) '(js2-use-font-lock-faces t) + '(mediawiki-site-alist (quote (("Wikipedia" "http://en.wikipedia.org/w/" "username" "password" "Main Page") ("YmirDev" "https://ymirlink:santamo@update.forcast.jp/fcdiv/mwiki/" "PHO" "" "メインページ")))) '(mew-field-spec (quote (("^Resent-\\(From\\|To\\|Cc\\|Date\\)" t mew-face-header-important mew-face-header-important) ("^Subject:$" t mew-face-header-important mew-face-header-subject) ("^From:$" t mew-face-header-important mew-face-header-from) ("^\\(To\\|Apparently-To\\):$" t mew-face-header-important mew-face-header-to) ("^\\(Cc\\|Dcc\\|Bcc\\):$" t mew-face-header-important mew-face-header-to) ("^Newsgroups:$" t mew-face-header-important mew-face-header-to) ("^Date:$" t mew-face-header-important mew-face-header-date) ("^Reply-To:$" t) ("^X-Mailer:$" t) ("^X-Mew:$" t mew-face-header-important mew-face-header-xmew) ("^\\(Received\\|Return-Path\\|Sender\\|Errors-To\\):$" nil) ("^\\(Path\\|Distribution\\|Xref\\):$" nil) ("^NNTP-Posting-" nil) ("^\\(Message-Id\\|Posted\\|In-Reply-To\\|References\\|Precedence\\):$" nil) ("^Delivered-" nil) ("^List-" nil) ("^\\(Mime-Version\\|Lines\\):$" nil) ("^From$" nil) ("^Status:$" nil) ("^Face:$" nil mew-face-header-private mew-face-header-marginal) ("^X-Text-Classification:$" t mew-face-header-important mew-face-header-important) ("^X-POPFile-Link:$" t mew-face-header-important mew-face-body-url) ("^\\(X\\|Original\\)-" nil mew-face-header-private mew-face-header-marginal)))) - '(mew-refile-guess-alist (quote (("From:" ("noreply@adc1.apple.com" . "+mm/adc") ("mag2 ID 0000022139" . "+mm/2ch") ("noreply@sourceforge.net" . "+from/sf-net")) ("Subject:" ("w3m-dev" . "+ml/w3m-dev")) ("To:" ("glasgow-haskell-users@haskell.org" . "+ml/ghc-users") ("fink-devel@lists.sourceforge.net" . "+ml/fink-devel")) ("Reply-To:" ("yun@kokonoe.com" . "+mm/kokonoe")) ("Cc:" ("glasgow-haskell-users@haskell.org" . "+ml/ghc-users"))))) + '(mew-refile-guess-alist (quote (("From:" ("noreply@adc1.apple.com" "+mm/adc") ("mag2 ID 0000022139" "+mm/2ch") ("noreply@sourceforge.net" "+from/sf-net")) ("Subject:" ("w3m-dev" "+ml/w3m-dev")) ("To:" ("glasgow-haskell-users@haskell.org" "+ml/ghc-users") ("fink-devel@lists.sourceforge.net" "+ml/fink-devel")) ("Reply-To:" ("yun@kokonoe.com" "+mm/kokonoe")) ("Cc:" ("glasgow-haskell-users@haskell.org" "+ml/ghc-users"))))) '(mew-scan-fields (quote ("Folder:" "Filename:" "Subject:" "Date:" "From:" "To:" "Cc:" "Content-Type:" "Content-Transfer-Encoding:" "X-Mew-Uidl:" "Message-Id:" "In-Reply-To:" "References:" "X-Mew-Ref:" "X-Text-Classification:" "Body"))) '(mew-spam: "X-Text-Classification:") '(mew-summary-form (quote (type (5 date) " " (14 from) " " t (14 x-classification) " " (30 subj) "|" (0 body)))) '(mouse-wheel-progessive-speed nil) '(mouse-wheel-scroll-amount (quote (1 ((shift) . 5) ((control))))) + '(mpc-browser-tags (quote (Directory Genre Artist|Composer|Performer Album|Playlist))) '(navi2ch-browse-url-browser-function (quote browse-url-firefox)) '(navi2ch-display-splash-screen nil) '(navi2ch-list-moved-board-alist (quote (("http://mamono.2ch.net/ihou/" . "http://hideyoshi.2ch.net/ihou/")))) @@ -534,16 +575,24 @@ '(w3m-output-coding-system (quote utf-8)) '(w3m-terminal-coding-system (quote utf-8)) '(w3m-use-cookies t) - '(whitespace-style (quote (face tabs trailing lines space-before-tab newline indentation empty space-after-tab tab-mark))) + '(whitespace-style (quote (face tabs trailing lines-tail space-before-tab newline indentation empty space-after-tab tab-mark))) + '(woman-cache-filename "~/.wmncach.el") '(x-select-enable-clipboard t)) (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. + ;; 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. + '(diff-added ((t (:inherit diff-changed :foreground "medium spring green" :weight extra-bold)))) + '(diff-removed ((t (:foreground "gold3" :weight extra-bold)))) '(flyspell-incorrect ((t (:foreground "OrangeRed" :overline t)))) '(jaspace-highlight-tab-face ((((class color) (background dark)) (:foreground "gray70" :underline t)))) '(navi2ch-bm-new-unread-face ((t (:foreground "PaleGreen" :weight bold)))) '(navi2ch-bm-updated-cache-face ((t (:foreground "CornflowerBlue" :weight bold)))) '(navi2ch-bm-updated-unread-face ((t (:foreground "DarkSeaGreen3" :weight bold)))) - '(which-func-face ((t (:background "black" :foreground "dark orange"))))) + '(textile-link-face ((t (:foreground "cyan")))) + '(textile-ol-bullet-face ((t (:foreground "dark orange")))) + '(textile-ul-bullet-face ((t (:foreground "deep sky blue")))) + '(which-func-face ((t (:background "black" :foreground "dark orange")))) + '(whitespace-indentation ((t (:foreground "dimgray" :underline t)))) + '(whitespace-line ((t (:background "gray20")))))