X-Git-Url: https://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=dot-files%2F_emacs_el;h=26ee810616136c42330956572321abae9ba3fab7;hb=c3e8cc2046cac6bc7291dcd61027e4c818bb56d7;hp=26b6587cf293b6ed5a0b021a4dd0264f2f802ce3;hpb=71065e7c85fdbb4c9dcf6528b589dcdc4ec7735a;p=sugar.git diff --git a/dot-files/_emacs_el b/dot-files/_emacs_el index 26b6587..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)) @@ -28,16 +29,31 @@ (global-font-lock-mode t) (auto-compression-mode t) +(which-function-mode t) (setq visible-bell t) (setq ring-bell-function (lambda ())) -(windmove-default-keybindings) -(server-start) +(require 'server) +(if (server-running-p) + (message "Warning: server %S is already running." server-name) + (server-start)) + +;; windmove +(windmove-default-keybindings) ;; Host specific configuration ------------------------------------------------ (let ((host (system-name))) (cond ((equal host "aria.cielonegro.org") - (setq browse-url-firefox-program "/opt/local/bin/firefox")))) + (progn + ;; Use firefox as the default browser. + (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) + (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) @@ -111,17 +127,27 @@ (load-file path) (message "Warning: file %s is absent" path))) +;; session +(require-if-present 'session) + ;; flyspell (require-if-present 'flyspell) +;; ditz +(require-if-present 'ditz) + +;; mediawiki +(require-if-present 'mediawiki) + ;; jaspace (require-if-present 'jaspace) ;; color-theme (require-if-present 'color-theme) (if (featurep 'color-theme) - (color-theme-initialize) - (color-theme-subtle-hacker)) + (progn + (color-theme-initialize) + (color-theme-subtle-hacker))) ;; auto-complete (require-if-present 'auto-complete-config) @@ -132,7 +158,8 @@ (mapcar (lambda (mode) (add-to-list 'ac-modes mode)) '(autoconf-mode - erlang-mode)) + erlang-mode + sql-mode)) (setq ac-modes (remove 'css-mode ac-modes)) (add-hook 'erlang-mode-hook (lambda () @@ -146,6 +173,7 @@ ;; elscreen (load "elscreen" "ElScreen" t) +(elscreen-start) (require-if-present 'elscreen-w3m) ;; undo-tree @@ -163,9 +191,26 @@ (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)) + ;; lua-mode (autoload 'lua-mode "lua-mode" "Lua editing mode." t) -(add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode) auto-mode-alist) +(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) @@ -174,13 +219,17 @@ ;; 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") +(require-if-present 'cedet) -;; ecb +;; ECB (require-if-present 'ecb-autoloads) (let* ((hosts '(("netbsd." . (("~/sandbox/yxmimeproc" "yxmimeproc") @@ -229,6 +278,12 @@ ;; javascript (autoload 'js2-mode "js2" nil t) (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) @@ -285,7 +340,6 @@ (add-hook 'haskell-mode-hook (lambda () (set-input-method "haskell-unicode"))) - ;; Hoogle (autoload 'hoogle-lookup "hoogle" "Hoogle" t) (global-set-key (kbd "C-c h") 'hoogle-lookup) @@ -299,16 +353,6 @@ objc-mode-hook java-mode-hook)) -;; css -(autoload 'css-mode "css-mode" "For editing CSS file" t) -(setq cssm-indent-level 4) -(setq cssm-mirror-mode nil) -(setq cssm-indent-function 'cssm-c-style-indenter) -(setq auto-mode-alist - (append - '(("\\.css$" . css-mode)) - auto-mode-alist)) - ;; EmacsWiki (autoload 'emacs-wiki-find-file "emacs-wiki" "Emacs Wiki" t) (defalias 'wiki 'emacs-wiki-find-file) @@ -319,12 +363,12 @@ (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) ;; SKK (require 'skk-autoloads) +(require 'skk-study) (global-set-key "\C-x\C-j" 'skk-mode) (global-set-key "\C-xj" 'skk-auto-fill-mode) (global-set-key "\C-xt" 'skk-tutorial) @@ -344,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)) @@ -353,7 +398,33 @@ (autoload 'po-mode "po-mode") (setq auto-mode-alist (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode) - auto-mode-alist)) + auto-mode-alist)) + +;; csv-mode +(autoload 'csv-mode "csv-mode" + "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") @@ -362,27 +433,37 @@ (defun memo () (interactive) (add-change-log-entry nil (expand-file-name "~/sync/memo.txt"))) -(define-key ctl-x-map "M" #'memo) +(define-key ctl-x-map "MM" #'memo) (defun depression () (interactive) (add-change-log-entry nil (expand-file-name "~/sync/depression.txt"))) -(define-key ctl-x-map "P" #'depression) +(define-key ctl-x-map "MD" #'depression) (defun plant () (interactive) (add-change-log-entry nil (expand-file-name "~/sync/plant.txt"))) -(define-key ctl-x-map "G" #'plant) +(define-key ctl-x-map "MP" #'plant) + +(defun robinson () + (interactive) + (elscreen-create) + (find-file (expand-file-name "~/sync/good-things.txt")) + (split-window-horizontally) + (next-window) + (find-file (expand-file-name "~/sync/bad-things.txt")) + (next-window)) +(define-key ctl-x-map "MR" #'robinson) ;; 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) @@ -405,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)) @@ -416,9 +497,12 @@ '(canlock-password "a14fa4d2601465d55585c291fa8b3943e189e716") '(cleite:auto-refresh-interval nil) '(cleite:measure-srpc-call-time t) + '(compilation-scroll-output (quote first-error)) '(completion-ignored-extensions (quote (".svn/" "CVS/" ".o" "~" ".bin" ".lbin" ".so" ".a" ".ln" ".blg" ".bbl" ".elc" ".lof" ".glo" ".idx" ".lot" ".dvi" ".fmt" ".tfm" ".pdf" ".class" ".fas" ".lib" ".mem" ".x86f" ".sparcf" ".fasl" ".ufsl" ".fsl" ".dxl" ".pfsl" ".dfsl" ".lo" ".la" ".gmo" ".mo" ".toc" ".aux" ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs" ".pyc" ".pyo" ".hi"))) '(cperl-merge-trailing-else nil) + '(csv-align-style (quote auto)) '(default-frame-alist (quote ((tool-bar-lines . 0) (menu-bar-lines . 1) (width . 80) (height . 25) (right-fringe) (left-fringe)))) + '(ditz-find-issue-directory-automatically-flag t) '(ecb-add-path-for-not-matching-files (quote (t))) '(ecb-help-info-path "/sw/share/info/ecb.info") '(ecb-layout-name "left14") @@ -444,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/")))) @@ -461,16 +547,21 @@ '(newsticker-url-list-defaults (quote (("slashdot" "http://slashdot.org/index.rss" nil 3600)))) '(nxml-auto-insert-xml-declaration-flag t) '(nxml-slash-auto-complete-flag t) + '(org-replace-disputed-keys t) '(rcirc-server-alist (quote (("irc1.ymir.jp" :nick "PHO`cons" nil nil)))) '(riece-layout "default") '(riece-layout-alist (quote (("middle-right" riece-configure-windows right middle) ("middle-left" riece-configure-windows left middle) ("top-right" riece-configure-windows right top) ("top-left" riece-configure-windows left top) ("bottom-right" riece-configure-windows right bottom) ("bottom-left" riece-configure-windows left bottom) ("top" riece-configure-windows-top) ("spiral" riece-configure-windows-spiral) ("default" . "middle-right")))) '(riece-others-buffer-mode nil) - '(rng-schema-locating-files (quote ("schemas.xml" "/sw/share/schema/schemas.xml" "~/share/nxml/schemas.xml"))) + '(rng-schema-locating-files (quote ("schemas.xml" "~/share/nxml/schemas.xml" "/usr/pkg/share/emacs/site-lisp/nxml-mode/schema/schemas.xml"))) '(rst-level-face-base-light 50) '(safe-local-variable-values (quote ((todo-categories "Todo" "Todo" "Todo" "Todo")))) + '(session-use-package t nil (session)) '(tramp-auto-save-directory "/tmp/tramp-auto-save") '(tramp-completion-reread-directory-timeout 2) '(tramp-default-host "localhost") + '(tramp-default-method "sshx") + '(uniquify-buffer-name-style (quote forward) nil (uniquify)) + '(uniquify-trailing-separator-p t) '(w3m-bookmark-file-coding-system (quote utf-8)) '(w3m-coding-system (quote utf-8)) '(w3m-coding-system-priority-list (quote (utf-8))) @@ -484,12 +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-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)))) - '(which-func-face ((t (:background "black" :foreground "dark orange"))))) + '(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)))) + '(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")))))