You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1614 lines
54 KiB

  1. ;;; emacs.el --- 10sr emacs initialization
  2. ;;; Commentary:
  3. ;;; Code:
  4. ;; SETUP_LOAD: (let ((file "DOTFILES_DIR/emacs.el"))
  5. ;; SETUP_LOAD: (and (file-readable-p file)
  6. ;; SETUP_LOAD: (load-file file)))
  7. (setq debug-on-error t)
  8. ;; make directories
  9. (unless (file-directory-p (expand-file-name user-emacs-directory))
  10. (make-directory (expand-file-name user-emacs-directory)))
  11. (require 'cl-lib)
  12. (require 'simple)
  13. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  14. ;; Some macros for internals
  15. ;; `emacs --load emacs.el` with Emacs 24.3 requires with-eval-after-load to be
  16. ;; defined at the toplevel (means that it should not be defined inside of some
  17. ;; special forms like `when'. I do not now how to do with about this...)
  18. (unless (fboundp 'with-eval-after-load)
  19. ;; polyfill for Emacs < 24.4
  20. (defmacro with-eval-after-load (file &rest body)
  21. "After FILE is loaded execute BODY."
  22. (declare (indent 1) (debug t))
  23. `(eval-after-load ,file (quote (progn ,@body)))))
  24. (defun call-after-init (func)
  25. "If `after-init-hook' has been run, call FUNC immediately.
  26. Otherwize hook it."
  27. (if after-init-time
  28. (funcall func)
  29. (add-hook 'after-init-hook
  30. func)))
  31. (defmacro safe-require-or-eval (feature)
  32. "Require FEATURE if available.
  33. At compile time the feature will be loaded immediately."
  34. `(eval-and-compile
  35. (message "safe-require-or-eval: Trying to require %s" ,feature)
  36. (require ,feature nil t)))
  37. (defmacro autoload-eval-lazily (feature &optional functions &rest body)
  38. "Define autoloading FEATURE that defines FUNCTIONS.
  39. FEATURE is a symbol. FUNCTIONS is a list of symbols. If FUNCTIONS is nil,
  40. the function same as FEATURE is defined as autoloaded function. BODY is passed
  41. to `eval-after-load'.
  42. After this macro is expanded, this returns the path to library if FEATURE
  43. found, otherwise returns nil."
  44. (declare (indent 2) (debug t))
  45. (let* ((libname (symbol-name (eval feature)))
  46. (libpath (locate-library libname)))
  47. `(progn
  48. (when (locate-library ,libname)
  49. ,@(mapcar (lambda (f)
  50. `(unless (fboundp ',f)
  51. (progn
  52. (message "Autoloaded function `%S' defined (%s)"
  53. (quote ,f)
  54. ,libpath)
  55. (autoload (quote ,f)
  56. ,libname
  57. ,(concat "Autoloaded function defined in \""
  58. libpath
  59. "\".")
  60. t))))
  61. (or (eval functions)
  62. `(,(eval feature)))))
  63. (eval-after-load ,feature
  64. (quote (progn
  65. ,@body)))
  66. (locate-library ,libname))))
  67. (when (autoload-eval-lazily 'tetris nil
  68. (message "Tetris loaded!"))
  69. (message "Tetris found!"))
  70. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  71. ;; package
  72. (set (defvar 10sr-package-list)
  73. '(
  74. vimrc-mode
  75. markdown-mode
  76. yaml-mode
  77. gnuplot-mode
  78. php-mode
  79. erlang
  80. js2-mode
  81. js-doc
  82. git-commit
  83. gitignore-mode
  84. adoc-mode
  85. malabar-mode
  86. ;; ack
  87. color-moccur
  88. ggtags
  89. flycheck
  90. auto-highlight-symbol
  91. hl-todo
  92. pp-c-l
  93. ;; is flymake installs are required?
  94. ;;flymake-jshint
  95. ;;flymake-python-pyflakes
  96. xclip
  97. foreign-regexp
  98. multi-term
  99. term-run
  100. editorconfig
  101. git-ps1-mode
  102. restart-emacs
  103. fill-column-indicator
  104. pkgbuild-mode
  105. minibuffer-line
  106. which-key
  107. ;; I think this works in place of my autosave lib
  108. super-save
  109. scala-mode
  110. ;;ensime
  111. editorconfig
  112. editorconfig-custom-majormode
  113. cyberpunk-theme
  114. grandshell-theme
  115. afternoon-theme
  116. git-command
  117. prompt-text
  118. ;; 10sr repository
  119. ;; 10sr-extras
  120. terminal-title
  121. recentf-show
  122. dired-list-all-mode
  123. pack
  124. set-modeline-color
  125. read-only-only-mode
  126. smart-revert
  127. autosave
  128. ;;window-organizer
  129. remember-major-modes-mode
  130. ilookup
  131. pasteboard
  132. end-mark
  133. sl
  134. gosh-mode
  135. ))
  136. (when (safe-require-or-eval 'package)
  137. (setq package-archives
  138. `(,@package-archives
  139. ("melpa" . "https://melpa.org/packages/")
  140. ("10sr-el" . "https://10sr.github.io/emacs-lisp/elpa/")))
  141. (package-initialize)
  142. (defun my-auto-install-package ()
  143. "Install packages semi-automatically."
  144. (interactive)
  145. (package-refresh-contents)
  146. (mapc (lambda (pkg)
  147. (or (package-installed-p pkg)
  148. (package-install pkg)))
  149. 10sr-package-list))
  150. )
  151. ;; (lazy-load-eval 'sudoku)
  152. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  153. ;; my-idle-hook
  154. (defvar my-idle-hook nil
  155. "Hook run when idle for several secs.")
  156. (defvar my-idle-hook-sec 5
  157. "Second to run `my-idle-hook'.")
  158. (run-with-idle-timer my-idle-hook-sec
  159. t
  160. (lambda ()
  161. (run-hooks 'my-idle-hook)))
  162. ;; (add-hook 'my-idle-hook
  163. ;; (lambda ()
  164. ;; (message "idle hook message")))
  165. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  166. ;; start and quit
  167. (setq inhibit-startup-message t)
  168. (setq confirm-kill-emacs 'y-or-n-p)
  169. (setq gc-cons-threshold (* 1024 1024 4))
  170. (when window-system
  171. (add-to-list 'default-frame-alist '(cursor-type . box))
  172. (add-to-list 'default-frame-alist '(background-color . "white"))
  173. (add-to-list 'default-frame-alist '(foreground-color . "gray10"))
  174. ;; (add-to-list 'default-frame-alist '(alpha . (80 100 100 100)))
  175. ;; does not work?
  176. )
  177. ;; (add-to-list 'default-frame-alist '(cursor-type . box))
  178. (if window-system (menu-bar-mode 1) (menu-bar-mode 0))
  179. (and (fboundp 'tool-bar-mode)
  180. (tool-bar-mode 0))
  181. (and (fboundp 'set-scroll-bar-mode)
  182. (set-scroll-bar-mode nil))
  183. (add-hook 'kill-emacs-hook
  184. ;; load init file when terminating emacs to ensure file is not broken
  185. 'reload-init-file)
  186. (defun my-force-kill-emacs ()
  187. "My force kill Emacs."
  188. (interactive)
  189. (let ((kill-emacs-hook nil))
  190. (kill-emacs)))
  191. (call-after-init
  192. (lambda ()
  193. (message "%s %s" invocation-name emacs-version)
  194. (message "Invocation directory: %s" default-directory)
  195. (message "%s was taken to initialize emacs." (emacs-init-time))
  196. (switch-to-buffer "*Messages*")))
  197. (cd ".") ; when using windows use / instead of \ in `default-directory'
  198. ;; locale
  199. (set-language-environment "Japanese")
  200. (set-default-coding-systems 'utf-8-unix)
  201. (prefer-coding-system 'utf-8-unix)
  202. (setq system-time-locale "C")
  203. ;; my prefix map
  204. (defvar my-prefix-map nil
  205. "My prefix map.")
  206. (define-prefix-command 'my-prefix-map)
  207. (define-key ctl-x-map (kbd "C-x") 'my-prefix-map)
  208. (define-key my-prefix-map (kbd "C-q") 'quoted-insert)
  209. (define-key my-prefix-map (kbd "C-z") 'suspend-frame)
  210. ;; (comint-show-maximum-output)
  211. ;; kill scratch
  212. (call-after-init (lambda ()
  213. (let ((buf (get-buffer "*scratch*")))
  214. (when buf
  215. (kill-buffer buf)))))
  216. ;; modifier keys
  217. ;; (setq mac-option-modifier 'control)
  218. ;; display
  219. (setq visible-bell t)
  220. (setq ring-bell-function 'ignore)
  221. (mouse-avoidance-mode 'banish)
  222. (setq echo-keystrokes 0.1)
  223. (defun reload-init-file ()
  224. "Reload Emacs init file."
  225. (interactive)
  226. (when (and user-init-file
  227. (file-readable-p user-init-file))
  228. (load-file user-init-file)))
  229. (safe-require-or-eval 'session)
  230. ;; server
  231. (set-variable 'server-name (concat "server"
  232. (number-to-string (emacs-pid))))
  233. ;; In Cygwin Environment `server-runnning-p' stops when server-use-tcp is nil
  234. ;; In Darwin environment, init fails with message like 'Service name too long'
  235. ;; when server-use-tcp is nil
  236. (when (or (eq system-type
  237. 'cygwin)
  238. (eq system-type
  239. 'darwin))
  240. (set-variable 'server-use-tcp t))
  241. ;; MSYS2 fix
  242. (when (eq system-type
  243. 'windows-nt)
  244. (setq shell-file-name
  245. (executable-find "bash"))
  246. '(setq function-key-map
  247. `(,@function-key-map ([pause] . [?\C-c])
  248. ))
  249. (define-key key-translation-map
  250. (kbd "<pause>")
  251. (kbd "C-c"))
  252. '(keyboard-translate [pause]
  253. (kbd "C-c")p)
  254. ;; TODO: move to other place later
  255. (when (not window-system)
  256. (setq interprogram-paste-function nil)
  257. (setq interprogram-cut-function nil)))
  258. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  259. ;; global keys
  260. (global-set-key (kbd "<up>") 'scroll-down-line)
  261. (global-set-key (kbd "<down>") 'scroll-up-line)
  262. (global-set-key (kbd "<left>") 'scroll-down)
  263. (global-set-key (kbd "<right>") 'scroll-up)
  264. ;; (define-key my-prefix-map (kbd "C-h") help-map)
  265. (global-set-key (kbd "C-\\") help-map)
  266. (define-key ctl-x-map (kbd "DEL") help-map)
  267. (define-key ctl-x-map (kbd "C-h") help-map)
  268. (define-key help-map "a" 'apropos)
  269. ;; disable annoying keys
  270. (global-set-key [prior] 'ignore)
  271. (global-set-key (kbd "<next>") 'ignore)
  272. (global-set-key [menu] 'ignore)
  273. (global-set-key [down-mouse-1] 'ignore)
  274. (global-set-key [down-mouse-2] 'ignore)
  275. (global-set-key [down-mouse-3] 'ignore)
  276. (global-set-key [mouse-1] 'ignore)
  277. (global-set-key [mouse-2] 'ignore)
  278. (global-set-key [mouse-3] 'ignore)
  279. (global-set-key (kbd "<eisu-toggle>") 'ignore)
  280. (global-set-key (kbd "C-<eisu-toggle>") 'ignore)
  281. (when (safe-require-or-eval 'which-key)
  282. (which-key-mode))
  283. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  284. ;; editting
  285. (defun my-copy-whole-line ()
  286. "Copy whole line."
  287. (interactive)
  288. (kill-new (concat (buffer-substring (point-at-bol)
  289. (point-at-eol))
  290. "\n")))
  291. (setq require-final-newline t)
  292. (setq kill-whole-line t)
  293. (setq scroll-conservatively 35
  294. scroll-margin 2
  295. scroll-step 0)
  296. (setq-default major-mode 'text-mode)
  297. (setq next-line-add-newlines nil)
  298. (setq kill-read-only-ok t)
  299. (setq truncate-partial-width-windows nil) ; when splitted horizontally
  300. ;; (setq-default line-spacing 0.2)
  301. (setq-default indicate-empty-lines t) ; when using x indicate empty line
  302. (setq-default tab-width 4)
  303. (setq-default indent-tabs-mode nil)
  304. (setq-default indent-line-function 'indent-to-left-margin)
  305. ;; (setq-default indent-line-function nil)
  306. (setq-default truncate-lines nil)
  307. ;; (pc-selection-mode 1) ; make some already defined keybind back to default
  308. (delete-selection-mode 1)
  309. (cua-mode 0)
  310. (setq line-move-visual nil)
  311. ;; key bindings
  312. ;; moving around
  313. ;; (global-set-key (kbd "M-j") 'next-line)
  314. ;; (global-set-key (kbd "M-k") 'previous-line)
  315. ;; (global-set-key (kbd "M-h") 'backward-char)
  316. ;; (global-set-key (kbd "M-l") 'forward-char)
  317. ;;(keyboard-translate ?\M-j ?\C-j)
  318. ;; (global-set-key (kbd "M-p") 'backward-paragraph)
  319. (define-key esc-map "p" 'backward-paragraph)
  320. ;; (global-set-key (kbd "M-n") 'forward-paragraph)
  321. (define-key esc-map "n" 'forward-paragraph)
  322. (global-set-key (kbd "C-<up>") 'scroll-down-line)
  323. (global-set-key (kbd "C-<down>") 'scroll-up-line)
  324. (global-set-key (kbd "C-<left>") 'scroll-down)
  325. (global-set-key (kbd "C-<right>") 'scroll-up)
  326. (global-set-key (kbd "<select>") 'ignore) ; 'previous-line-mark)
  327. (define-key ctl-x-map (kbd "ESC x") 'execute-extended-command)
  328. (define-key ctl-x-map (kbd "ESC :") 'eval-expression)
  329. ;; C-h and DEL
  330. (global-set-key (kbd "C-h") (kbd "DEL"))
  331. ;;(global-set-key (kbd "C-m") 'reindent-then-newline-and-indent)
  332. (global-set-key (kbd "C-m") 'newline-and-indent)
  333. ;; (global-set-key (kbd "C-o") (kbd "C-e C-m"))
  334. (define-key esc-map "k" 'my-copy-whole-line)
  335. ;; (global-set-key "\C-z" 'undo) ; undo is M-u
  336. (define-key esc-map "u" 'undo)
  337. (define-key esc-map "i" (kbd "ESC TAB"))
  338. ;; (global-set-key (kbd "C-r") 'query-replace-regexp)
  339. (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  340. (global-set-key (kbd "C-r") 'isearch-backward-regexp)
  341. (define-key my-prefix-map (kbd "C-o") 'occur)
  342. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  343. ;; title and mode-line
  344. (when (safe-require-or-eval 'terminal-title)
  345. ;; if TERM is not screen use default value
  346. (if (getenv "TMUX")
  347. ;; if use tmux locally just basename of current dir
  348. (set-variable 'terminal-title-format
  349. '((file-name-nondirectory (directory-file-name
  350. default-directory))))
  351. (if (and (let ((tty-type (frame-parameter nil
  352. 'tty-type)))
  353. (and tty-type
  354. (equal (car (split-string tty-type
  355. "-"))
  356. "screen")))
  357. (not (getenv "SSH_CONNECTION")))
  358. (set-variable 'terminal-title-format
  359. '((file-name-nondirectory (directory-file-name
  360. default-directory))))
  361. ;; seems that TMUX is used locally and ssh to remote host
  362. (set-variable 'terminal-title-format
  363. `("em:"
  364. ,user-login-name
  365. "@"
  366. ,(car (split-string (system-name)
  367. "\\."))
  368. ":"
  369. default-directory))
  370. )
  371. )
  372. (terminal-title-mode))
  373. (setq eol-mnemonic-dos "\\r\\n")
  374. (setq eol-mnemonic-mac "\\r")
  375. (setq eol-mnemonic-unix "\\n")
  376. (which-function-mode 0)
  377. (line-number-mode 0)
  378. (column-number-mode 0)
  379. (size-indication-mode 0)
  380. (setq mode-line-position
  381. '(:eval (format "L%%l/%d,C%%c"
  382. (count-lines (point-max)
  383. (point-min)))))
  384. (when (safe-require-or-eval 'git-ps1-mode)
  385. (git-ps1-mode))
  386. ;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title
  387. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  388. ;; minibuffer
  389. (setq insert-default-directory t)
  390. (setq completion-ignore-case t
  391. read-file-name-completion-ignore-case t
  392. read-buffer-completion-ignore-case t)
  393. (setq resize-mini-windows t)
  394. (temp-buffer-resize-mode 1)
  395. (savehist-mode 1)
  396. (defvar display-time-format "%Y/%m/%d %a %H:%M")
  397. (fset 'yes-or-no-p 'y-or-n-p)
  398. ;; complete symbol when `eval'
  399. (define-key read-expression-map (kbd "TAB") 'completion-at-point)
  400. (define-key minibuffer-local-map (kbd "C-u")
  401. (lambda () (interactive) (delete-region (point-at-bol) (point))))
  402. ;; I dont know these bindings are good
  403. (define-key minibuffer-local-map (kbd "C-p") (kbd "ESC p"))
  404. (define-key minibuffer-local-map (kbd "C-n") (kbd "ESC n"))
  405. (when (safe-require-or-eval 'minibuffer-line)
  406. (set-face-underline 'minibuffer-line nil)
  407. (set-variable 'minibuffer-line-refresh-interval
  408. 25)
  409. (set-variable 'minibuffer-line-format
  410. `(,(concat user-login-name
  411. "@"
  412. (car (split-string (system-name)
  413. "\\."))
  414. ":")
  415. (:eval (abbreviate-file-name (or buffer-file-name
  416. default-directory)))
  417. (:eval (and (fboundp 'git-ps1-mode-get-current)
  418. (git-ps1-mode-get-current " [GIT:%s]")))
  419. " "
  420. (:eval (format-time-string display-time-format))))
  421. (minibuffer-line-mode 1)
  422. )
  423. (when (safe-require-or-eval 'prompt-text)
  424. (set-variable 'prompt-text-format
  425. `(,(concat ""
  426. user-login-name
  427. "@"
  428. (car (split-string (system-name)
  429. "\\."))
  430. ":")
  431. (:eval (abbreviate-file-name (or buffer-file-name
  432. default-directory)))
  433. (:eval (and (fboundp 'git-ps1-mode-get-current)
  434. (git-ps1-mode-get-current " [GIT:%s]")))
  435. " "
  436. (:eval (format-time-string display-time-format))
  437. "\n"
  438. (:eval (symbol-name this-command))
  439. ": "))
  440. (prompt-text-mode 1))
  441. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  442. ;; letters, font-lock mode and fonts
  443. ;; (set-face-background 'vertical-border (face-foreground 'mode-line))
  444. ;; (set-window-margins (selected-window) 1 1)
  445. (and (or (eq system-type 'Darwin)
  446. (eq system-type 'darwin))
  447. (fboundp 'mac-set-input-method-parameter)
  448. (mac-set-input-method-parameter 'japanese 'cursor-color "red")
  449. (mac-set-input-method-parameter 'roman 'cursor-color "black"))
  450. (when (and (boundp 'input-method-activate-hook) ; i dont know this is correct
  451. (boundp 'input-method-inactivate-hook))
  452. (add-hook 'input-method-activate-hook
  453. (lambda () (set-cursor-color "red")))
  454. (add-hook 'input-method-inactivate-hook
  455. (lambda () (set-cursor-color "black"))))
  456. (when (safe-require-or-eval 'paren)
  457. (show-paren-mode 1)
  458. (setq show-paren-delay 0.5
  459. show-paren-style 'parenthesis) ; mixed is hard to read
  460. ;; (set-face-background 'show-paren-match
  461. ;; "black")
  462. ;; ;; (face-foreground 'default))
  463. ;; (set-face-foreground 'show-paren-match
  464. ;; "white")
  465. ;; (set-face-inverse-video-p 'show-paren-match
  466. ;; t)
  467. )
  468. (transient-mark-mode 1)
  469. (global-font-lock-mode 1)
  470. (setq font-lock-global-modes
  471. '(not
  472. help-mode
  473. eshell-mode
  474. ;;term-mode
  475. Man-mode))
  476. ;; (standard-display-ascii ?\n "$\n")
  477. ;; (defvar my-eol-face
  478. ;; '(("\n" . (0 font-lock-comment-face t nil)))
  479. ;; )
  480. ;; (defvar my-tab-face
  481. ;; '(("\t" . '(0 highlight t nil))))
  482. (defvar my-jspace-face
  483. '(("\u3000" . '(0 highlight t nil))))
  484. (add-hook 'font-lock-mode-hook
  485. (lambda ()
  486. ;; (font-lock-add-keywords nil my-eol-face)
  487. (font-lock-add-keywords nil my-jspace-face)
  488. ))
  489. (when (safe-require-or-eval 'whitespace)
  490. (add-to-list 'whitespace-display-mappings
  491. ;; We need t since last one takes precedence
  492. `(tab-mark ?\t ,(vconcat "^I\t")) t)
  493. ;; (add-to-list 'whitespace-display-mappings
  494. ;; `(newline-mark ?\n ,(vconcat "$\n")))
  495. (setq whitespace-style '(face
  496. trailing ; trailing blanks
  497. newline ; newlines
  498. newline-mark ; use display table for newline
  499. tab-mark
  500. empty ; empty lines at beg or end of buffer
  501. lines-tail ; lines over 80
  502. ))
  503. ;; (setq whitespace-newline 'font-lock-comment-face)
  504. (set-variable 'whitespace-line-column nil)
  505. (global-whitespace-mode t)
  506. (add-hook 'dired-mode-hook
  507. (lambda ()
  508. (set (make-local-variable 'whitespace-style) nil)))
  509. (if (eq (display-color-cells)
  510. 256)
  511. (set-face-foreground 'whitespace-newline "color-109")
  512. ;; (progn
  513. ;; (set-face-bold-p 'whitespace-newline
  514. ;; t))
  515. ))
  516. (and nil
  517. (safe-require-or-eval 'fill-column-indicator)
  518. (setq fill-column-indicator))
  519. ;; highlight current line
  520. ;; http://wiki.riywo.com/index.php?Meadow
  521. (face-spec-set 'hl-line
  522. '((((min-colors 256)
  523. (background dark))
  524. (:background "color-234"))
  525. (((min-colors 256)
  526. (background light))
  527. (:background "color-234"))
  528. (t
  529. (:underline "black"))))
  530. (set-variable 'hl-line-global-modes
  531. '(not
  532. term-mode))
  533. (global-hl-line-mode 1) ;; (hl-line-mode 1)
  534. (set-face-foreground 'font-lock-regexp-grouping-backslash "#666")
  535. (set-face-foreground 'font-lock-regexp-grouping-construct "#f60")
  536. ;;(safe-require-or-eval 'set-modeline-color)
  537. ;; (let ((fg (face-foreground 'default))
  538. ;; (bg (face-background 'default)))
  539. ;; (set-face-background 'mode-line-inactive
  540. ;; (if (face-inverse-video-p 'mode-line) fg bg))
  541. ;; (set-face-foreground 'mode-line-inactive
  542. ;; (if (face-inverse-video-p 'mode-line) bg fg)))
  543. ;; (set-face-underline 'mode-line-inactive
  544. ;; t)
  545. ;; (set-face-underline 'vertical-border
  546. ;; nil)
  547. (when (safe-require-or-eval 'end-mark)
  548. (global-end-mark-mode))
  549. (when (safe-require-or-eval 'auto-highlight-symbol)
  550. (set-variable 'ahs-idle-interval 0.6)
  551. (global-auto-highlight-symbol-mode 1))
  552. ;; (when (safe-require-or-eval 'cyberpunk-theme)
  553. ;; (load-theme 'cyberpunk t)
  554. ;; (set-face-attribute 'button
  555. ;; nil
  556. ;; :inherit 'highlight)
  557. ;; (set-face-foreground 'mode-line-inactive
  558. ;; "white")
  559. ;; (face-spec-set 'term-color-black (face-default-spec 'term-color-black))
  560. ;; (face-spec-set 'term-color-red (face-default-spec 'term-color-red))
  561. ;; (face-spec-set 'term-color-green (face-default-spec 'term-color-green))
  562. ;; (face-spec-set 'term-color-yellow (face-default-spec 'term-color-yellow))
  563. ;; (face-spec-set 'term-color-blue (face-default-spec 'term-color-blue))
  564. ;; (face-spec-set 'term-color-magenta (face-default-spec 'term-color-magenta))
  565. ;; (face-spec-set 'term-color-cyan (face-default-spec 'term-color-cyan))
  566. ;; (face-spec-set 'term-color-white (face-default-spec 'term-color-white))
  567. ;; )
  568. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  569. ;; file handling
  570. (when (safe-require-or-eval 'editorconfig)
  571. ;; (set-variable 'editorconfig-get-properties-function
  572. ;; 'editorconfig-core-get-properties-hash)
  573. (editorconfig-mode 1)
  574. (with-eval-after-load 'org-src
  575. (add-hook 'org-src-mode-hook
  576. 'editorconfig-mode-apply t)))
  577. (when (fboundp 'editorconfig-custom-majormode)
  578. (add-hook 'editorconfig-custom-hooks
  579. 'editorconfig-custom-majormode))
  580. (when (fboundp 'editorconfig-charset-extras)
  581. (add-hook 'editorconfig-custom-hooks
  582. 'editorconfig-charset-extras))
  583. (setq revert-without-query '(".+"))
  584. ;; save cursor position
  585. (when (safe-require-or-eval 'saveplace)
  586. (setq-default save-place t)
  587. (setq save-place-file (concat user-emacs-directory
  588. "places")))
  589. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  590. (setq make-backup-files t)
  591. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  592. (setq backup-directory-alist
  593. (cons (cons "\\.*$" (expand-file-name (concat user-emacs-directory
  594. "backup")))
  595. backup-directory-alist))
  596. (setq version-control 'never)
  597. (setq delete-old-versions t)
  598. (setq auto-save-list-file-prefix (expand-file-name (concat user-emacs-directory
  599. "auto-save/")))
  600. (setq delete-auto-save-files t)
  601. (add-to-list 'completion-ignored-extensions ".bak")
  602. ;; (setq delete-by-moving-to-trash t
  603. ;; trash-directory "~/.emacs.d/trash")
  604. (add-hook 'after-save-hook
  605. 'executable-make-buffer-file-executable-if-script-p)
  606. (set (defvar bookmark-default-file)
  607. (expand-file-name (concat user-emacs-directory
  608. "bmk")))
  609. (with-eval-after-load 'recentf
  610. (defvar recentf-exclude nil)
  611. (add-to-list 'recentf-exclude
  612. (regexp-quote bookmark-default-file)))
  613. (when (safe-require-or-eval 'smart-revert)
  614. (smart-revert-on))
  615. ;; autosave
  616. (when (safe-require-or-eval 'autosave)
  617. (autosave-set 8))
  618. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  619. ;; buffer killing
  620. ;; (defun my-delete-window-killing-buffer () nil)
  621. (defun my-query-kill-current-buffer ()
  622. "Interactively kill current buffer."
  623. (interactive)
  624. (if (y-or-n-p (concat "kill current buffer? :"))
  625. (kill-buffer (current-buffer))))
  626. ;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
  627. (substitute-key-definition 'kill-buffer
  628. 'my-query-kill-current-buffer
  629. global-map)
  630. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  631. ;; share clipboard with x
  632. ;; this page describes this in details, but only these sexps seem to be needed
  633. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  634. (and (not window-system)
  635. (not (eq window-system 'mac))
  636. (getenv "DISPLAY")
  637. (not (equal (getenv "DISPLAY") ""))
  638. (executable-find "xclip")
  639. ;; (< emacs-major-version 24)
  640. (safe-require-or-eval 'xclip)
  641. nil
  642. (turn-on-xclip))
  643. (and (eq system-type 'darwin)
  644. (safe-require-or-eval 'pasteboard)
  645. (turn-on-pasteboard))
  646. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  647. ;; some modes and hooks
  648. ;; Workaround to avoid ensime error
  649. (defvar ensime-mode-key-prefix nil)
  650. ;; http://qiita.com/sune2/items/b73037f9e85962f5afb7
  651. (when (safe-require-or-eval 'company)
  652. (global-company-mode)
  653. (set-variable 'company-idle-delay 0.5)
  654. (set-variable 'company-minimum-prefix-length 2)
  655. (set-variable 'company-selection-wrap-around t))
  656. ;; https://github.com/lunaryorn/flycheck
  657. (when (safe-require-or-eval 'flycheck)
  658. (call-after-init 'global-flycheck-mode))
  659. (set-variable 'ac-ignore-case nil)
  660. (when (autoload-eval-lazily 'term-run '(term-run-shell-command term-run))
  661. (define-key ctl-x-map "t" 'term-run-shell-command))
  662. (add-to-list 'safe-local-variable-values
  663. '(encoding utf-8))
  664. (setq enable-local-variables :safe)
  665. (when (safe-require-or-eval 'remember-major-modes-mode)
  666. (remember-major-modes-mode 1))
  667. ;; Detect file type from shebang and set major-mode.
  668. (add-to-list 'interpreter-mode-alist
  669. '("python3" . python-mode))
  670. (add-to-list 'interpreter-mode-alist
  671. '("python2" . python-mode))
  672. (with-eval-after-load 'python
  673. (defvar python-mode-map (make-sparse-keymap))
  674. (define-key python-mode-map (kbd "C-m") 'newline-and-indent))
  675. ;; http://fukuyama.co/foreign-regexp
  676. '(and (safe-require-or-eval 'foreign-regexp)
  677. (progn
  678. (setq foreign-regexp/regexp-type 'perl)
  679. '(setq reb-re-syntax 'foreign-regexp)
  680. ))
  681. (autoload-eval-lazily 'sql '(sql-mode)
  682. (safe-require-or-eval 'sql-indent))
  683. (when (autoload-eval-lazily 'git-command)
  684. (define-key ctl-x-map "g" 'git-command))
  685. (when (safe-require-or-eval 'git-commit)
  686. (global-git-commit-mode 1))
  687. (with-eval-after-load 'git-commit
  688. (add-hook 'git-commit-setup-hook
  689. 'turn-off-auto-fill t))
  690. (autoload-eval-lazily 'sl)
  691. (with-eval-after-load 'rst
  692. (define-key rst-mode-map (kbd "C-m") 'newline-and-indent))
  693. ;; jdee is too old! use malabar instead
  694. (with-eval-after-load 'jdee
  695. (add-hook 'jdee-mode-hook
  696. (lambda ()
  697. (make-local-variable 'global-mode-string)
  698. (add-to-list 'global-mode-string
  699. mode-line-position))))
  700. ;; Cannot enable error thrown. Why???
  701. ;; https://github.com/m0smith/malabar-mode#Installation
  702. ;; (when (autoload-eval-lazily 'malabar-mode)
  703. ;; (add-to-list 'load-path
  704. ;; (expand-file-name (concat user-emacs-directory "/cedet")))
  705. ;; (safe-require-or-eval 'cedet-devel-load)
  706. ;; (call-after-init 'activate-malabar-mode))
  707. (with-eval-after-load 'make-mode
  708. (defvar makefile-mode-map (make-sparse-keymap))
  709. (define-key makefile-mode-map (kbd "C-m") 'newline-and-indent)
  710. ;; this functions is set in write-file-functions, i cannot find any
  711. ;; good way to remove this.
  712. (fset 'makefile-warn-suspicious-lines 'ignore))
  713. (with-eval-after-load 'verilog-mode
  714. (defvar verilog-mode-map (make-sparse-keymap))
  715. (define-key verilog-mode-map ";" 'self-insert-command))
  716. (setq diff-switches "-u")
  717. (with-eval-after-load 'diff-mode
  718. ;; (when (and (eq major-mode
  719. ;; 'diff-mode)
  720. ;; (not buffer-file-name))
  721. ;; ;; do not pass when major-mode is derived mode of diff-mode
  722. ;; (view-mode 1))
  723. (set-face-attribute 'diff-header nil
  724. :foreground nil
  725. :background nil
  726. :weight 'bold)
  727. (set-face-attribute 'diff-file-header nil
  728. :foreground nil
  729. :background nil
  730. :weight 'bold)
  731. (set-face-foreground 'diff-index-face "blue")
  732. (set-face-attribute 'diff-hunk-header nil
  733. :foreground "cyan"
  734. :weight 'normal)
  735. (set-face-attribute 'diff-context nil
  736. ;; :foreground "white"
  737. :foreground nil
  738. :weight 'normal)
  739. (set-face-foreground 'diff-removed-face "red")
  740. (set-face-foreground 'diff-added-face "green")
  741. (set-face-background 'diff-removed-face nil)
  742. (set-face-background 'diff-added-face nil)
  743. (set-face-attribute 'diff-changed nil
  744. :foreground "magenta"
  745. :weight 'normal)
  746. (set-face-attribute 'diff-refine-change nil
  747. :foreground nil
  748. :background nil
  749. :weight 'bold
  750. :inverse-video t)
  751. ;; Annoying !
  752. ;;(diff-auto-refine-mode)
  753. )
  754. ;; (ffap-bindings)
  755. (set-variable 'browse-url-browser-function
  756. 'eww-browse-url)
  757. (set-variable 'sh-here-document-word "__EOC__")
  758. (when (autoload-eval-lazily 'adoc-mode
  759. nil
  760. (defvar adoc-mode-map (make-sparse-keymap))
  761. (define-key adoc-mode-map (kbd "C-m") 'newline))
  762. (setq auto-mode-alist
  763. `(("\\.adoc\\'" . adoc-mode)
  764. ("\\.asciidoc\\'" . adoc-mode)
  765. ,@auto-mode-alist)))
  766. (with-eval-after-load 'markup-faces
  767. ;; Is this too match ?
  768. (set-face-foreground 'markup-meta-face
  769. "color-245")
  770. (set-face-foreground 'markup-meta-hide-face
  771. "color-245")
  772. )
  773. ;; TODO: check if this is required
  774. (when (autoload-eval-lazily 'groovy-mode nil
  775. (defvar groovy-mode-map (make-sparse-keymap))
  776. (define-key groovy-mode-map "(" 'self-insert-command)
  777. (define-key groovy-mode-map ")" 'self-insert-command)
  778. (define-key groovy-mode-map (kbd "C-m") 'newline-and-indent)
  779. )
  780. (add-to-list 'auto-mode-alist
  781. '("build\\.gradle\\'" . groovy-mode)))
  782. (with-eval-after-load 'yaml-mode
  783. (defvar yaml-mode-map (make-sparse-keymap))
  784. (define-key yaml-mode-map (kbd "C-m") 'newline))
  785. (with-eval-after-load 'html-mode
  786. (defvar html-mode-map (make-sparse-keymap))
  787. (define-key html-mode-map (kbd "C-m") 'reindent-then-newline-and-indent))
  788. (with-eval-after-load 'text-mode
  789. (define-key text-mode-map (kbd "C-m") 'newline))
  790. (add-to-list 'Info-default-directory-list
  791. (expand-file-name "~/.info/emacs-ja"))
  792. (with-eval-after-load 'apropos
  793. (defvar apropos-mode-map (make-sparse-keymap))
  794. (define-key apropos-mode-map "n" 'next-line)
  795. (define-key apropos-mode-map "p" 'previous-line))
  796. ;; `isearch' library does not call `provide' so cannot use with-eval-after-load
  797. ;; (define-key isearch-mode-map
  798. ;; (kbd "C-j") 'isearch-other-control-char)
  799. ;; (define-key isearch-mode-map
  800. ;; (kbd "C-k") 'isearch-other-control-char)
  801. ;; (define-key isearch-mode-map
  802. ;; (kbd "C-h") 'isearch-other-control-char)
  803. (define-key isearch-mode-map (kbd "C-h") 'isearch-delete-char)
  804. (define-key isearch-mode-map (kbd "M-r")
  805. 'isearch-query-replace-regexp)
  806. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  807. (setq lazy-highlight-cleanup nil)
  808. ;; face for isearch highlighing
  809. (set-face-attribute 'lazy-highlight
  810. nil
  811. :foreground `unspecified
  812. :background `unspecified
  813. :underline t
  814. ;; :weight `bold
  815. )
  816. (add-hook 'outline-mode-hook
  817. (lambda ()
  818. (when (string-match "\\.md\\'" buffer-file-name)
  819. (set (make-local-variable 'outline-regexp) "#+ "))))
  820. (add-to-list 'auto-mode-alist (cons "\\.ol\\'" 'outline-mode))
  821. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  822. (when (autoload-eval-lazily 'markdown-mode
  823. '(markdown-mode gfm-mode)
  824. (defvar gfm-mode-map (make-sparse-keymap))
  825. (define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline))
  826. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
  827. (set-variable 'markdown-command (or (executable-find "markdown")
  828. (executable-find "markdown.pl")
  829. ""))
  830. (add-hook 'markdown-mode-hook
  831. (lambda ()
  832. (outline-minor-mode 1)
  833. (flyspell-mode)
  834. (set (make-local-variable 'comment-start) ";")))
  835. )
  836. ;; c-mode
  837. ;; http://www.emacswiki.org/emacs/IndentingC
  838. ;; http://en.wikipedia.org/wiki/Indent_style
  839. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  840. ;; http://seesaawiki.jp/whiteflare503/d/Emacs%20%a5%a4%a5%f3%a5%c7%a5%f3%a5%c8
  841. (with-eval-after-load 'cc-vars
  842. (defvar c-default-style nil)
  843. (add-to-list 'c-default-style
  844. '(c-mode . "k&r"))
  845. (add-to-list 'c-default-style
  846. '(c++-mode . "k&r"))
  847. (add-hook 'c-mode-common-hook
  848. (lambda ()
  849. ;; why c-basic-offset in k&r style defaults to 5 ???
  850. (set-variable 'c-basic-offset 4)
  851. (set-variable 'indent-tabs-mode nil)
  852. ;; (set-face-foreground 'font-lock-keyword-face "blue")
  853. (c-toggle-hungry-state -1)
  854. ;; (and (require 'gtags nil t)
  855. ;; (gtags-mode 1))
  856. )))
  857. (autoload-eval-lazily 'js2-mode nil
  858. ;; currently do not use js2-mode
  859. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  860. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  861. (defvar js2-mode-map (make-sparse-keymap))
  862. (define-key js2-mode-map (kbd "C-m") (lambda ()
  863. (interactive)
  864. (js2-enter-key)
  865. (indent-for-tab-command)))
  866. ;; (add-hook (kill-local-variable 'before-save-hook)
  867. ;; 'js2-before-save)
  868. ;; (add-hook 'before-save-hook
  869. ;; 'my-indent-buffer
  870. ;; nil
  871. ;; t)
  872. )
  873. (add-to-list 'interpreter-mode-alist
  874. '("node" . js-mode))
  875. (when (autoload-eval-lazily 'flymake-jslint
  876. '(flymake-jslint-load))
  877. (autoload-eval-lazily 'js nil
  878. (add-hook 'js-mode-hook
  879. 'flymake-jslint-load)))
  880. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  881. (with-eval-after-load 'uniquify
  882. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  883. (setq uniquify-ignore-buffers-re "*[^*]+*")
  884. (setq uniquify-min-dir-content 1))
  885. (with-eval-after-load 'view
  886. (defvar view-mode-map (make-sparse-keymap))
  887. (define-key view-mode-map "j" 'scroll-up-line)
  888. (define-key view-mode-map "k" 'scroll-down-line)
  889. (define-key view-mode-map "v" 'toggle-read-only)
  890. (define-key view-mode-map "q" 'bury-buffer)
  891. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  892. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  893. ;; (define-key view-mode-map
  894. ;; "n" 'nonincremental-repeat-search-forward)
  895. ;; (define-key view-mode-map
  896. ;; "N" 'nonincremental-repeat-search-backward)
  897. (define-key view-mode-map "/" 'isearch-forward-regexp)
  898. (define-key view-mode-map "?" 'isearch-backward-regexp)
  899. (define-key view-mode-map "n" 'isearch-repeat-forward)
  900. (define-key view-mode-map "N" 'isearch-repeat-backward)
  901. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point))
  902. (global-set-key "\M-r" 'view-mode)
  903. ;; (setq view-read-only t)
  904. (with-eval-after-load 'term
  905. (defvar term-raw-map (make-sparse-keymap))
  906. (define-key term-raw-map (kbd "C-x")
  907. (lookup-key (current-global-map)
  908. (kbd "C-x"))))
  909. (add-hook 'term-mode-hook
  910. (lambda ()
  911. ;; Stop current line highlighting
  912. (set (make-local-variable (defvar hl-line-range-function))
  913. (lambda () '(0 . 0)))
  914. (set (make-local-variable 'scroll-margin)
  915. 0)))
  916. (add-hook 'Man-mode-hook
  917. (lambda ()
  918. (view-mode 1)
  919. (setq truncate-lines nil)))
  920. (set-variable 'Man-notify-method (if window-system
  921. 'newframe
  922. 'aggressive))
  923. (set-variable 'woman-cache-filename (expand-file-name (concat user-emacs-directory
  924. "woman_cache.el")))
  925. ;; not work because man.el will be loaded when man called
  926. (defalias 'man 'woman)
  927. (add-to-list 'auto-mode-alist
  928. '("tox\\.ini\\'" . conf-unix-mode))
  929. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  930. ;; buffer switching
  931. (defvar bs-configurations)
  932. (when (autoload-eval-lazily 'bs '(bs-show)
  933. (add-to-list 'bs-configurations
  934. '("specials" "^\\*" nil ".*" nil nil))
  935. (add-to-list 'bs-configurations
  936. '("files-and-specials" "^\\*" buffer-file-name ".*" nil nil))
  937. (defvar bs-mode-map)
  938. (defvar bs-current-configuration)
  939. (define-key bs-mode-map (kbd "t")
  940. ;; TODO: fix toggle feature
  941. (lambda ()
  942. (interactive)
  943. (if (string= "specials"
  944. bs-current-configuration)
  945. (bs-set-configuration "files")
  946. (bs-set-configuration "specials"))
  947. (bs-refresh)
  948. (bs-message-without-log "%s"
  949. (bs--current-config-message))))
  950. ;; (setq bs-configurations (list
  951. ;; '("processes" nil get-buffer-process ".*" nil nil)
  952. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  953. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  954. )
  955. (defalias 'list-buffers 'bs-show)
  956. (set-variable 'bs-default-configuration "files-and-specials")
  957. (set-variable 'bs-default-sort-name "by nothing")
  958. (add-hook 'bs-mode-hook
  959. (lambda ()
  960. (set (make-local-variable 'scroll-margin) 0))))
  961. ;;(iswitchb-mode 1)
  962. (icomplete-mode)
  963. (defun iswitchb-buffer-display-other-window ()
  964. "Do iswitchb in other window."
  965. (interactive)
  966. (let ((iswitchb-default-method 'display))
  967. (call-interactively 'iswitchb-buffer)))
  968. ;;;;;;;;;;;;;;;;;;;;;;;;
  969. ;; ilookup
  970. (with-eval-after-load 'ilookup
  971. (set-variable 'ilookup-dict-alist
  972. '(
  973. ("sdcv" . (lambda (word)
  974. (shell-command-to-string
  975. (format "sdcv -n '%s'"
  976. word))))
  977. ("en" . (lambda (word)
  978. (shell-command-to-string
  979. (format "sdcv -n -u dictd_www.dict.org_gcide '%s'"
  980. word))))
  981. ("ja" . (lambda (word)
  982. (shell-command-to-string
  983. (format "sdcv -n -u EJ-GENE95 -u jmdict-en-ja '%s'"
  984. word))))
  985. ("jaj" . (lambda (word)
  986. (shell-command-to-string
  987. (format "sdcv -n -u jmdict-en-ja '%s'"
  988. word))))
  989. ("jag" .
  990. (lambda (word)
  991. (with-temp-buffer
  992. (insert (shell-command-to-string
  993. (format "sdcv -n -u 'Genius English-Japanese' '%s'"
  994. word)))
  995. (html2text)
  996. (buffer-substring (point-min)
  997. (point-max)))))
  998. ("alc" . (lambda (word)
  999. (shell-command-to-string
  1000. (format "alc '%s' | head -n 20"
  1001. word))))
  1002. ("app" . (lambda (word)
  1003. (shell-command-to-string
  1004. (format "dict_app '%s'"
  1005. word))))
  1006. ;; letters broken
  1007. ("ms" .
  1008. (lambda (word)
  1009. (let ((url (concat
  1010. "http://api.microsofttranslator.com/V2/Ajax.svc/"
  1011. "Translate?appId=%s&text=%s&to=%s"))
  1012. (apikey "3C9778666C5BA4B406FFCBEE64EF478963039C51")
  1013. (target "ja")
  1014. (eword (url-hexify-string word)))
  1015. (with-current-buffer (url-retrieve-synchronously
  1016. (format url
  1017. apikey
  1018. eword
  1019. target))
  1020. (message "")
  1021. (goto-char (point-min))
  1022. (search-forward-regexp "^$"
  1023. nil
  1024. t)
  1025. (url-unhex-string (buffer-substring-no-properties
  1026. (point)
  1027. (point-max)))))))
  1028. ))
  1029. ;; (funcall (cdr (assoc "ms"
  1030. ;; ilookup-alist))
  1031. ;; "dictionary")
  1032. ;; (switch-to-buffer (url-retrieve-synchronously "http://api.microsofttranslator.com/V2/Ajax.svc/Translate?appId=3C9778666C5BA4B406FFCBEE64EF478963039C51&text=dictionary&to=ja"))
  1033. ;; (switch-to-buffer (url-retrieve-synchronously "http://google.com"))
  1034. (set-variable 'ilookup-default "ja")
  1035. (when (locate-library "google-translate")
  1036. (defvar ilookup-dict-alist nil)
  1037. (add-to-list 'ilookup-dict-alist
  1038. '("gt" .
  1039. (lambda (word)
  1040. (save-excursion
  1041. (google-translate-translate "auto"
  1042. "ja"
  1043. word))
  1044. (with-current-buffer "*Google Translate*"
  1045. (buffer-substring-no-properties (point-min)
  1046. (point-max)))))))
  1047. )
  1048. (when (autoload-eval-lazily 'google-translate '(google-translate-translate
  1049. google-translate-at-point))
  1050. (set-variable 'google-translate-default-source-language "auto")
  1051. (set-variable 'google-translate-default-target-language "ja"))
  1052. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1053. ;; vc
  1054. (set-variable 'vc-handled-backends '())
  1055. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1056. ;; recentf-mode
  1057. (set-variable 'recentf-save-file (expand-file-name (concat user-emacs-directory
  1058. "recentf")))
  1059. (set-variable 'recentf-max-menu-items 20)
  1060. (set-variable 'recentf-max-saved-items 30)
  1061. (set-variable 'recentf-show-file-shortcuts-flag nil)
  1062. (when (safe-require-or-eval 'recentf)
  1063. (add-to-list 'recentf-exclude
  1064. (regexp-quote recentf-save-file))
  1065. (add-to-list 'recentf-exclude
  1066. (regexp-quote (expand-file-name user-emacs-directory)))
  1067. (define-key ctl-x-map (kbd "C-r") 'recentf-open-files)
  1068. (remove-hook 'find-file-hook
  1069. 'recentf-track-opened-file)
  1070. (defun my-recentf-load-track-save-list ()
  1071. "Load current recentf list from file, track current visiting file, then save
  1072. the list."
  1073. (recentf-load-list)
  1074. (recentf-track-opened-file)
  1075. (recentf-save-list))
  1076. (add-hook 'find-file-hook
  1077. 'my-recentf-load-track-save-list)
  1078. (add-hook 'kill-emacs-hook
  1079. 'recentf-load-list)
  1080. ;;(run-with-idle-timer 5 t 'recentf-save-list)
  1081. ;; (add-hook 'find-file-hook
  1082. ;; (lambda ()
  1083. ;; (recentf-add-file default-directory)))
  1084. (and (autoload-eval-lazily 'recentf-show)
  1085. (define-key ctl-x-map (kbd "C-r") 'recentf-show)
  1086. (add-hook 'recentf-show-before-listing-hook
  1087. 'recentf-load-list))
  1088. (recentf-mode 1)
  1089. (define-key recentf-dialog-mode-map (kbd "<up>") 'previous-line)
  1090. (define-key recentf-dialog-mode-map (kbd "<down>") 'next-line)
  1091. (define-key recentf-dialog-mode-map "p" 'previous-line)
  1092. (define-key recentf-dialog-mode-map "n" 'next-line)
  1093. (add-hook 'recentf-dialog-mode-hook
  1094. (lambda ()
  1095. ;; (recentf-save-list)
  1096. ;; (define-key recentf-dialog-mode-map (kbd "C-x C-f")
  1097. ;; 'my-recentf-cd-and-find-file)
  1098. (cd "~/"))))
  1099. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1100. ;; dired
  1101. (defun my-dired-echo-file-head (arg)
  1102. ""
  1103. (interactive "P")
  1104. (let ((f (dired-get-filename)))
  1105. (message "%s"
  1106. (with-temp-buffer
  1107. (insert-file-contents f)
  1108. (buffer-substring-no-properties
  1109. (point-min)
  1110. (progn (goto-char (point-min))
  1111. (forward-line (1- (if arg
  1112. (prefix-numeric-value arg)
  1113. 7)))
  1114. (point-at-eol)))))))
  1115. (defun my-dired-diff ()
  1116. ""
  1117. (interactive)
  1118. (let ((files (dired-get-marked-files nil nil nil t)))
  1119. (if (eq (car files)
  1120. t)
  1121. (diff (cadr files) (dired-get-filename))
  1122. (message "One file must be marked!"))))
  1123. (defun dired-get-file-info ()
  1124. "dired get file info"
  1125. (interactive)
  1126. (let ((f (shell-quote-argument (dired-get-filename t))))
  1127. (if (file-directory-p f)
  1128. (progn
  1129. (message "Calculating disk usage...")
  1130. (shell-command (concat "du -hsD "
  1131. f)))
  1132. (shell-command (concat "file "
  1133. f)))))
  1134. (defun my-dired-scroll-up ()
  1135. ""
  1136. (interactive)
  1137. (my-dired-previous-line (- (window-height) 1)))
  1138. (defun my-dired-scroll-down ()
  1139. ""
  1140. (interactive)
  1141. (my-dired-next-line (- (window-height) 1)))
  1142. ;; (defun my-dired-forward-line (arg)
  1143. ;; ""
  1144. ;; (interactive "p"))
  1145. (defun my-dired-previous-line (arg)
  1146. ""
  1147. (interactive "p")
  1148. (if (> arg 0)
  1149. (progn
  1150. (if (eq (line-number-at-pos)
  1151. 1)
  1152. (goto-char (point-max))
  1153. (forward-line -1))
  1154. (my-dired-previous-line (if (or (dired-get-filename nil t)
  1155. (dired-get-subdir))
  1156. (- arg 1)
  1157. arg)))
  1158. (dired-move-to-filename)))
  1159. (defun my-dired-next-line (arg)
  1160. ""
  1161. (interactive "p")
  1162. (if (> arg 0)
  1163. (progn
  1164. (if (eq (point)
  1165. (point-max))
  1166. (goto-char (point-min))
  1167. (forward-line 1))
  1168. (my-dired-next-line (if (or (dired-get-filename nil t)
  1169. (dired-get-subdir))
  1170. (- arg 1)
  1171. arg)))
  1172. (dired-move-to-filename)))
  1173. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  1174. (if (eq window-system 'mac)
  1175. (setq dired-listing-switches "-lhF")
  1176. (setq dired-listing-switches "-lhF --time-style=long-iso")
  1177. )
  1178. (setq dired-listing-switches "-lhF")
  1179. (put 'dired-find-alternate-file 'disabled nil)
  1180. ;; when using dired-find-alternate-file
  1181. ;; reuse current dired buffer for the file to open
  1182. (set-variable 'dired-ls-F-marks-symlinks t)
  1183. (with-eval-after-load 'ls-lisp
  1184. (setq ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  1185. (setq ls-lisp-dirs-first t)
  1186. (setq ls-lisp-use-localized-time-format t)
  1187. (setq ls-lisp-format-time-list
  1188. '("%Y-%m-%d %H:%M"
  1189. "%Y-%m-%d ")))
  1190. (set-variable 'dired-dwim-target t)
  1191. (set-variable 'dired-isearch-filenames t)
  1192. (set-variable 'dired-hide-details-hide-symlink-targets nil)
  1193. (set-variable 'dired-hide-details-hide-information-lines nil)
  1194. ;; (add-hook 'dired-after-readin-hook
  1195. ;; 'my-replace-nasi-none)
  1196. ;; (add-hook 'after-init-hook
  1197. ;; (lambda ()
  1198. ;; (dired ".")))
  1199. (with-eval-after-load 'dired
  1200. (safe-require-or-eval 'ls-lisp)
  1201. (defvar dired-mode-map (make-sparse-keymap))
  1202. (define-key dired-mode-map "i" 'dired-get-file-info)
  1203. (define-key dired-mode-map "f" 'find-file)
  1204. (define-key dired-mode-map "!" 'shell-command)
  1205. (define-key dired-mode-map "&" 'async-shell-command)
  1206. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1207. (define-key dired-mode-map "=" 'my-dired-diff)
  1208. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1209. (define-key dired-mode-map "b" 'gtkbm)
  1210. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  1211. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1212. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  1213. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  1214. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  1215. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  1216. (substitute-key-definition 'dired-next-line
  1217. 'my-dired-next-line
  1218. dired-mode-map)
  1219. (substitute-key-definition 'dired-previous-line
  1220. 'my-dired-previous-line
  1221. dired-mode-map)
  1222. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  1223. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  1224. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  1225. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  1226. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1227. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1228. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  1229. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  1230. (add-hook 'dired-mode-hook
  1231. (lambda ()
  1232. (when (fboundp 'dired-hide-details-mode)
  1233. (dired-hide-details-mode t)
  1234. (local-set-key "l" 'dired-hide-details-mode))
  1235. (let ((file "._Icon\015"))
  1236. (when nil
  1237. '(file-readable-p file)
  1238. (delete-file file)))))
  1239. (when (autoload-eval-lazily 'pack '(dired-do-pack-or-unpack pack-pack))
  1240. (with-eval-after-load 'dired
  1241. (define-key dired-mode-map "P" 'pack-dired-dwim)))
  1242. (when (autoload-eval-lazily 'dired-list-all-mode)
  1243. (setq dired-listing-switches "-lhF")
  1244. (with-eval-after-load 'dired
  1245. (define-key dired-mode-map "a" 'dired-list-all-mode))))
  1246. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1247. ;; misc funcs
  1248. (defalias 'qcalc 'quick-calc)
  1249. (defun memo (&optional dir)
  1250. "Open memo.txt in DIR."
  1251. (interactive)
  1252. (pop-to-buffer (find-file-noselect (concat (if dir
  1253. (file-name-as-directory dir)
  1254. "")
  1255. "memo.txt"))))
  1256. (defvar my-rgrep-alist
  1257. `(
  1258. ;; the silver searcher
  1259. ("ag"
  1260. (executable-find "ag")
  1261. "ag --nocolor --nogroup --nopager --filename ")
  1262. ;; ack
  1263. ("ack"
  1264. (executable-find "ack")
  1265. "ack --nocolor --nogroup --nopager --with-filename ")
  1266. ;; gnu global
  1267. ("global"
  1268. (and (require 'gtags nil t)
  1269. (executable-find "global")
  1270. (gtags-get-rootpath))
  1271. "global --result grep ")
  1272. ;; git grep
  1273. ("gitgrep"
  1274. (eq 0
  1275. (shell-command "git rev-parse --git-dir"))
  1276. "git --no-pager -c color.grep=false grep -nH -e ")
  1277. ;; grep
  1278. ("grep"
  1279. t
  1280. ,(concat "find . "
  1281. "-path '*/.git' -prune -o "
  1282. "-path '*/.svn' -prune -o "
  1283. "-type f -print0 | "
  1284. "xargs -0 grep -nH -e "))
  1285. )
  1286. "Alist of rgrep command.
  1287. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  1288. condition to choose COMMAND when evaluated.")
  1289. (defvar my-rgrep-default nil
  1290. "Default command name for my-rgrep.")
  1291. (defun my-rgrep-grep-command (&optional name alist)
  1292. "Return recursive grep command for current directory or nil.
  1293. If NAME is given, use that without testing.
  1294. Commands are searched from ALIST."
  1295. (if alist
  1296. (if name
  1297. ;; if name is given search that from alist and return the command
  1298. (nth 2 (assoc name
  1299. alist))
  1300. ;; if name is not given try test in 1th elem
  1301. (let ((car (car alist))
  1302. (cdr (cdr alist)))
  1303. (if (eval (nth 1 car))
  1304. ;; if the condition is true return the command
  1305. (nth 2 car)
  1306. ;; try next one
  1307. (and cdr
  1308. (my-rgrep-grep-command name cdr)))))
  1309. ;; if alist is not given set default value
  1310. (my-rgrep-grep-command name my-rgrep-alist)))
  1311. (defun my-rgrep (command-args)
  1312. "My recursive grep. Run COMMAND-ARGS."
  1313. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  1314. nil)))
  1315. (if cmd
  1316. (list (read-shell-command "grep command: "
  1317. cmd
  1318. 'grep-find-history))
  1319. (error "My-Rgrep: Command for rgrep not found")
  1320. )))
  1321. (compilation-start command-args
  1322. 'grep-mode))
  1323. ;; (defun my-rgrep-symbol-at-point (command-args)
  1324. ;; "My recursive grep. Run COMMAND-ARGS."
  1325. ;; (interactive (list (read-shell-command "grep command: "
  1326. ;; (concat (my-rgrep-grep-command)
  1327. ;; " "
  1328. ;; (thing-at-point 'symbol))
  1329. ;; 'grep-find-history)))
  1330. ;; (compilation-start command-args
  1331. ;; 'grep-mode))
  1332. (defmacro define-my-rgrep (name)
  1333. "Define rgrep for NAME."
  1334. `(defun ,(intern (concat "my-rgrep-"
  1335. name)) ()
  1336. ,(format "My recursive grep by %s."
  1337. name)
  1338. (interactive)
  1339. (let ((my-rgrep-default ,name))
  1340. (if (called-interactively-p 'any)
  1341. (call-interactively 'my-rgrep)
  1342. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  1343. )
  1344. (define-my-rgrep "ack")
  1345. (define-my-rgrep "ag")
  1346. (define-my-rgrep "gitgrep")
  1347. (define-my-rgrep "grep")
  1348. (define-my-rgrep "global")
  1349. (define-key ctl-x-map "s" 'my-rgrep)
  1350. ;; (defun make ()
  1351. ;; "Run \"make -k\" in current directory."
  1352. ;; (interactive)
  1353. ;; (compile "make -k"))
  1354. (defalias 'make 'compile)
  1355. (define-key ctl-x-map "c" 'compile)
  1356. ;;;;;;;;;;;;;;;;;;;;;;;
  1357. ;; adoc-simple-mode
  1358. (when (safe-require-or-eval 'adoc-mode)
  1359. (defvar adoc-simple-font-lock-keywords
  1360. nil)
  1361. (define-derived-mode adoc-simple-mode adoc-mode
  1362. "Adoc-Simple"
  1363. "Major mode for editing AsciiDoc text files.
  1364. This mode is a simplified version of `adoc-mode'."
  1365. '(set (make-local-variable 'font-lock-defaults)
  1366. '(adoc-simple-font-lock-keywords
  1367. nil nil nil nil
  1368. (font-lock-multiline . t)
  1369. (font-lock-mark-block-function . adoc-font-lock-mark-block-function))))
  1370. (add-to-list 'auto-mode-alist
  1371. '("\\.adoc\\'" . adoc-simple-mode)))
  1372. (when (and (safe-require-or-eval 'google-translate)
  1373. (safe-require-or-eval 'google-translate-smooth-ui))
  1374. (add-to-list 'google-translate-translation-directions-alist
  1375. '("en" . "ja"))
  1376. (defun translate-echo-at-point ()
  1377. "Translate popup at point."
  1378. (interactive)
  1379. (let ((google-translate-output-destination 'echo-area))
  1380. (google-translate-translate "auto" "ja" (current-word t t))))
  1381. (define-minor-mode auto-translate-mode
  1382. "Translate word at point automatically."
  1383. :global nil
  1384. :lighter "ATranslate"))
  1385. ;;; emacs.el ends here