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.
 
 
 
 
 
 

1611 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. (when (fboundp 'editorconfig-custom-majormode)
  575. (add-hook 'editorconfig-custom-hooks
  576. 'editorconfig-custom-majormode))
  577. (when (fboundp 'editorconfig-charset-extras)
  578. (add-hook 'editorconfig-custom-hooks
  579. 'editorconfig-charset-extras))
  580. (setq revert-without-query '(".+"))
  581. ;; save cursor position
  582. (when (safe-require-or-eval 'saveplace)
  583. (setq-default save-place t)
  584. (setq save-place-file (concat user-emacs-directory
  585. "places")))
  586. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  587. (setq make-backup-files t)
  588. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  589. (setq backup-directory-alist
  590. (cons (cons "\\.*$" (expand-file-name (concat user-emacs-directory
  591. "backup")))
  592. backup-directory-alist))
  593. (setq version-control 'never)
  594. (setq delete-old-versions t)
  595. (setq auto-save-list-file-prefix (expand-file-name (concat user-emacs-directory
  596. "auto-save/")))
  597. (setq delete-auto-save-files t)
  598. (add-to-list 'completion-ignored-extensions ".bak")
  599. ;; (setq delete-by-moving-to-trash t
  600. ;; trash-directory "~/.emacs.d/trash")
  601. (add-hook 'after-save-hook
  602. 'executable-make-buffer-file-executable-if-script-p)
  603. (set (defvar bookmark-default-file)
  604. (expand-file-name (concat user-emacs-directory
  605. "bmk")))
  606. (with-eval-after-load 'recentf
  607. (defvar recentf-exclude nil)
  608. (add-to-list 'recentf-exclude
  609. (regexp-quote bookmark-default-file)))
  610. (when (safe-require-or-eval 'smart-revert)
  611. (smart-revert-on))
  612. ;; autosave
  613. (when (safe-require-or-eval 'autosave)
  614. (autosave-set 8))
  615. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  616. ;; buffer killing
  617. ;; (defun my-delete-window-killing-buffer () nil)
  618. (defun my-query-kill-current-buffer ()
  619. "Interactively kill current buffer."
  620. (interactive)
  621. (if (y-or-n-p (concat "kill current buffer? :"))
  622. (kill-buffer (current-buffer))))
  623. ;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
  624. (substitute-key-definition 'kill-buffer
  625. 'my-query-kill-current-buffer
  626. global-map)
  627. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  628. ;; share clipboard with x
  629. ;; this page describes this in details, but only these sexps seem to be needed
  630. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  631. (and (not window-system)
  632. (not (eq window-system 'mac))
  633. (getenv "DISPLAY")
  634. (not (equal (getenv "DISPLAY") ""))
  635. (executable-find "xclip")
  636. ;; (< emacs-major-version 24)
  637. (safe-require-or-eval 'xclip)
  638. nil
  639. (turn-on-xclip))
  640. (and (eq system-type 'darwin)
  641. (safe-require-or-eval 'pasteboard)
  642. (turn-on-pasteboard))
  643. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  644. ;; some modes and hooks
  645. ;; Workaround to avoid ensime error
  646. (defvar ensime-mode-key-prefix nil)
  647. ;; http://qiita.com/sune2/items/b73037f9e85962f5afb7
  648. (when (safe-require-or-eval 'company)
  649. (global-company-mode)
  650. (set-variable 'company-idle-delay 0.5)
  651. (set-variable 'company-minimum-prefix-length 2)
  652. (set-variable 'company-selection-wrap-around t))
  653. ;; https://github.com/lunaryorn/flycheck
  654. (when (safe-require-or-eval 'flycheck)
  655. (call-after-init 'global-flycheck-mode))
  656. (set-variable 'ac-ignore-case nil)
  657. (when (autoload-eval-lazily 'term-run '(term-run-shell-command term-run))
  658. (define-key ctl-x-map "t" 'term-run-shell-command))
  659. (add-to-list 'safe-local-variable-values
  660. '(encoding utf-8))
  661. (setq enable-local-variables :safe)
  662. (when (safe-require-or-eval 'remember-major-modes-mode)
  663. (remember-major-modes-mode 1))
  664. ;; Detect file type from shebang and set major-mode.
  665. (add-to-list 'interpreter-mode-alist
  666. '("python3" . python-mode))
  667. (add-to-list 'interpreter-mode-alist
  668. '("python2" . python-mode))
  669. (with-eval-after-load 'python
  670. (defvar python-mode-map (make-sparse-keymap))
  671. (define-key python-mode-map (kbd "C-m") 'newline-and-indent))
  672. ;; http://fukuyama.co/foreign-regexp
  673. '(and (safe-require-or-eval 'foreign-regexp)
  674. (progn
  675. (setq foreign-regexp/regexp-type 'perl)
  676. '(setq reb-re-syntax 'foreign-regexp)
  677. ))
  678. (autoload-eval-lazily 'sql '(sql-mode)
  679. (safe-require-or-eval 'sql-indent))
  680. (when (autoload-eval-lazily 'git-command)
  681. (define-key ctl-x-map "g" 'git-command))
  682. (when (safe-require-or-eval 'git-commit)
  683. (global-git-commit-mode 1))
  684. (autoload-eval-lazily 'sl)
  685. (with-eval-after-load 'rst
  686. (define-key rst-mode-map (kbd "C-m") 'newline-and-indent))
  687. ;; jdee is too old! use malabar instead
  688. (with-eval-after-load 'jdee
  689. (add-hook 'jdee-mode-hook
  690. (lambda ()
  691. (make-local-variable 'global-mode-string)
  692. (add-to-list 'global-mode-string
  693. mode-line-position))))
  694. ;; Cannot enable error thrown. Why???
  695. ;; https://github.com/m0smith/malabar-mode#Installation
  696. ;; (when (autoload-eval-lazily 'malabar-mode)
  697. ;; (add-to-list 'load-path
  698. ;; (expand-file-name (concat user-emacs-directory "/cedet")))
  699. ;; (safe-require-or-eval 'cedet-devel-load)
  700. ;; (call-after-init 'activate-malabar-mode))
  701. (with-eval-after-load 'make-mode
  702. (defvar makefile-mode-map (make-sparse-keymap))
  703. (define-key makefile-mode-map (kbd "C-m") 'newline-and-indent)
  704. ;; this functions is set in write-file-functions, i cannot find any
  705. ;; good way to remove this.
  706. (fset 'makefile-warn-suspicious-lines 'ignore))
  707. (with-eval-after-load 'verilog-mode
  708. (defvar verilog-mode-map (make-sparse-keymap))
  709. (define-key verilog-mode-map ";" 'self-insert-command))
  710. (setq diff-switches "-u")
  711. (with-eval-after-load 'diff-mode
  712. ;; (when (and (eq major-mode
  713. ;; 'diff-mode)
  714. ;; (not buffer-file-name))
  715. ;; ;; do not pass when major-mode is derived mode of diff-mode
  716. ;; (view-mode 1))
  717. (set-face-attribute 'diff-header nil
  718. :foreground nil
  719. :background nil
  720. :weight 'bold)
  721. (set-face-attribute 'diff-file-header nil
  722. :foreground nil
  723. :background nil
  724. :weight 'bold)
  725. (set-face-foreground 'diff-index-face "blue")
  726. (set-face-attribute 'diff-hunk-header nil
  727. :foreground "cyan"
  728. :weight 'normal)
  729. (set-face-attribute 'diff-context nil
  730. ;; :foreground "white"
  731. :foreground nil
  732. :weight 'normal)
  733. (set-face-foreground 'diff-removed-face "red")
  734. (set-face-foreground 'diff-added-face "green")
  735. (set-face-background 'diff-removed-face nil)
  736. (set-face-background 'diff-added-face nil)
  737. (set-face-attribute 'diff-changed nil
  738. :foreground "magenta"
  739. :weight 'normal)
  740. (set-face-attribute 'diff-refine-change nil
  741. :foreground nil
  742. :background nil
  743. :weight 'bold
  744. :inverse-video t)
  745. ;; Annoying !
  746. ;;(diff-auto-refine-mode)
  747. )
  748. ;; (ffap-bindings)
  749. (set-variable 'browse-url-browser-function
  750. 'eww-browse-url)
  751. (set-variable 'sh-here-document-word "__EOC__")
  752. (when (autoload-eval-lazily 'adoc-mode
  753. nil
  754. (defvar adoc-mode-map (make-sparse-keymap))
  755. (define-key adoc-mode-map (kbd "C-m") 'newline))
  756. (setq auto-mode-alist
  757. `(("\\.adoc\\'" . adoc-mode)
  758. ("\\.asciidoc\\'" . adoc-mode)
  759. ,@auto-mode-alist)))
  760. (with-eval-after-load 'markup-faces
  761. ;; Is this too match ?
  762. (set-face-foreground 'markup-meta-face
  763. "color-245")
  764. (set-face-foreground 'markup-meta-hide-face
  765. "color-245")
  766. )
  767. ;; TODO: check if this is required
  768. (when (autoload-eval-lazily 'groovy-mode nil
  769. (defvar groovy-mode-map (make-sparse-keymap))
  770. (define-key groovy-mode-map "(" 'self-insert-command)
  771. (define-key groovy-mode-map ")" 'self-insert-command)
  772. (define-key groovy-mode-map (kbd "C-m") 'newline-and-indent)
  773. )
  774. (add-to-list 'auto-mode-alist
  775. '("build\\.gradle\\'" . groovy-mode)))
  776. (with-eval-after-load 'yaml-mode
  777. (defvar yaml-mode-map (make-sparse-keymap))
  778. (define-key yaml-mode-map (kbd "C-m") 'newline))
  779. (with-eval-after-load 'html-mode
  780. (defvar html-mode-map (make-sparse-keymap))
  781. (define-key html-mode-map (kbd "C-m") 'reindent-then-newline-and-indent))
  782. (with-eval-after-load 'text-mode
  783. (define-key text-mode-map (kbd "C-m") 'newline))
  784. (add-to-list 'Info-default-directory-list
  785. (expand-file-name "~/.info/emacs-ja"))
  786. (with-eval-after-load 'apropos
  787. (defvar apropos-mode-map (make-sparse-keymap))
  788. (define-key apropos-mode-map "n" 'next-line)
  789. (define-key apropos-mode-map "p" 'previous-line))
  790. ;; `isearch' library does not call `provide' so cannot use with-eval-after-load
  791. ;; (define-key isearch-mode-map
  792. ;; (kbd "C-j") 'isearch-other-control-char)
  793. ;; (define-key isearch-mode-map
  794. ;; (kbd "C-k") 'isearch-other-control-char)
  795. ;; (define-key isearch-mode-map
  796. ;; (kbd "C-h") 'isearch-other-control-char)
  797. (define-key isearch-mode-map (kbd "C-h") 'isearch-delete-char)
  798. (define-key isearch-mode-map (kbd "M-r")
  799. 'isearch-query-replace-regexp)
  800. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  801. (setq lazy-highlight-cleanup nil)
  802. ;; face for isearch highlighing
  803. (set-face-attribute 'lazy-highlight
  804. nil
  805. :foreground `unspecified
  806. :background `unspecified
  807. :underline t
  808. ;; :weight `bold
  809. )
  810. (add-hook 'outline-mode-hook
  811. (lambda ()
  812. (when (string-match "\\.md\\'" buffer-file-name)
  813. (set (make-local-variable 'outline-regexp) "#+ "))))
  814. (add-to-list 'auto-mode-alist (cons "\\.ol\\'" 'outline-mode))
  815. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  816. (when (autoload-eval-lazily 'markdown-mode
  817. '(markdown-mode gfm-mode)
  818. (defvar gfm-mode-map (make-sparse-keymap))
  819. (define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline))
  820. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
  821. (set-variable 'markdown-command (or (executable-find "markdown")
  822. (executable-find "markdown.pl")
  823. ""))
  824. (add-hook 'markdown-mode-hook
  825. (lambda ()
  826. (outline-minor-mode 1)
  827. (flyspell-mode)
  828. (set (make-local-variable 'comment-start) ";")))
  829. )
  830. ;; c-mode
  831. ;; http://www.emacswiki.org/emacs/IndentingC
  832. ;; http://en.wikipedia.org/wiki/Indent_style
  833. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  834. ;; http://seesaawiki.jp/whiteflare503/d/Emacs%20%a5%a4%a5%f3%a5%c7%a5%f3%a5%c8
  835. (with-eval-after-load 'cc-vars
  836. (defvar c-default-style nil)
  837. (add-to-list 'c-default-style
  838. '(c-mode . "k&r"))
  839. (add-to-list 'c-default-style
  840. '(c++-mode . "k&r"))
  841. (add-hook 'c-mode-common-hook
  842. (lambda ()
  843. ;; why c-basic-offset in k&r style defaults to 5 ???
  844. (set-variable 'c-basic-offset 4)
  845. (set-variable 'indent-tabs-mode nil)
  846. ;; (set-face-foreground 'font-lock-keyword-face "blue")
  847. (c-toggle-hungry-state -1)
  848. ;; (and (require 'gtags nil t)
  849. ;; (gtags-mode 1))
  850. )))
  851. (autoload-eval-lazily 'js2-mode nil
  852. ;; currently do not use js2-mode
  853. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  854. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  855. (defvar js2-mode-map (make-sparse-keymap))
  856. (define-key js2-mode-map (kbd "C-m") (lambda ()
  857. (interactive)
  858. (js2-enter-key)
  859. (indent-for-tab-command)))
  860. ;; (add-hook (kill-local-variable 'before-save-hook)
  861. ;; 'js2-before-save)
  862. ;; (add-hook 'before-save-hook
  863. ;; 'my-indent-buffer
  864. ;; nil
  865. ;; t)
  866. )
  867. (add-to-list 'interpreter-mode-alist
  868. '("node" . js-mode))
  869. (when (autoload-eval-lazily 'flymake-jslint
  870. '(flymake-jslint-load))
  871. (autoload-eval-lazily 'js nil
  872. (add-hook 'js-mode-hook
  873. 'flymake-jslint-load)))
  874. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  875. (with-eval-after-load 'uniquify
  876. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  877. (setq uniquify-ignore-buffers-re "*[^*]+*")
  878. (setq uniquify-min-dir-content 1))
  879. (with-eval-after-load 'view
  880. (defvar view-mode-map (make-sparse-keymap))
  881. (define-key view-mode-map "j" 'scroll-up-line)
  882. (define-key view-mode-map "k" 'scroll-down-line)
  883. (define-key view-mode-map "v" 'toggle-read-only)
  884. (define-key view-mode-map "q" 'bury-buffer)
  885. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  886. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  887. ;; (define-key view-mode-map
  888. ;; "n" 'nonincremental-repeat-search-forward)
  889. ;; (define-key view-mode-map
  890. ;; "N" 'nonincremental-repeat-search-backward)
  891. (define-key view-mode-map "/" 'isearch-forward-regexp)
  892. (define-key view-mode-map "?" 'isearch-backward-regexp)
  893. (define-key view-mode-map "n" 'isearch-repeat-forward)
  894. (define-key view-mode-map "N" 'isearch-repeat-backward)
  895. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point))
  896. (global-set-key "\M-r" 'view-mode)
  897. ;; (setq view-read-only t)
  898. (with-eval-after-load 'term
  899. (defvar term-raw-map (make-sparse-keymap))
  900. (define-key term-raw-map (kbd "C-x")
  901. (lookup-key (current-global-map)
  902. (kbd "C-x"))))
  903. (add-hook 'term-mode-hook
  904. (lambda ()
  905. ;; Stop current line highlighting
  906. (set (make-local-variable (defvar hl-line-range-function))
  907. (lambda () '(0 . 0)))
  908. (set (make-local-variable 'scroll-margin)
  909. 0)))
  910. (add-hook 'Man-mode-hook
  911. (lambda ()
  912. (view-mode 1)
  913. (setq truncate-lines nil)))
  914. (set-variable 'Man-notify-method (if window-system
  915. 'newframe
  916. 'aggressive))
  917. (set-variable 'woman-cache-filename (expand-file-name (concat user-emacs-directory
  918. "woman_cache.el")))
  919. ;; not work because man.el will be loaded when man called
  920. (defalias 'man 'woman)
  921. (add-to-list 'auto-mode-alist
  922. '("tox\\.ini\\'" . conf-unix-mode))
  923. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  924. ;; buffer switching
  925. (defvar bs-configurations)
  926. (when (autoload-eval-lazily 'bs '(bs-show)
  927. (add-to-list 'bs-configurations
  928. '("specials" "^\\*" nil ".*" nil nil))
  929. (add-to-list 'bs-configurations
  930. '("files-and-specials" "^\\*" buffer-file-name ".*" nil nil))
  931. (defvar bs-mode-map)
  932. (defvar bs-current-configuration)
  933. (define-key bs-mode-map (kbd "t")
  934. ;; TODO: fix toggle feature
  935. (lambda ()
  936. (interactive)
  937. (if (string= "specials"
  938. bs-current-configuration)
  939. (bs-set-configuration "files")
  940. (bs-set-configuration "specials"))
  941. (bs-refresh)
  942. (bs-message-without-log "%s"
  943. (bs--current-config-message))))
  944. ;; (setq bs-configurations (list
  945. ;; '("processes" nil get-buffer-process ".*" nil nil)
  946. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  947. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  948. )
  949. (defalias 'list-buffers 'bs-show)
  950. (set-variable 'bs-default-configuration "files-and-specials")
  951. (set-variable 'bs-default-sort-name "by nothing")
  952. (add-hook 'bs-mode-hook
  953. (lambda ()
  954. (set (make-local-variable 'scroll-margin) 0))))
  955. ;;(iswitchb-mode 1)
  956. (icomplete-mode)
  957. (defun iswitchb-buffer-display-other-window ()
  958. "Do iswitchb in other window."
  959. (interactive)
  960. (let ((iswitchb-default-method 'display))
  961. (call-interactively 'iswitchb-buffer)))
  962. ;;;;;;;;;;;;;;;;;;;;;;;;
  963. ;; ilookup
  964. (with-eval-after-load 'ilookup
  965. (set-variable 'ilookup-dict-alist
  966. '(
  967. ("sdcv" . (lambda (word)
  968. (shell-command-to-string
  969. (format "sdcv -n '%s'"
  970. word))))
  971. ("en" . (lambda (word)
  972. (shell-command-to-string
  973. (format "sdcv -n -u dictd_www.dict.org_gcide '%s'"
  974. word))))
  975. ("ja" . (lambda (word)
  976. (shell-command-to-string
  977. (format "sdcv -n -u EJ-GENE95 -u jmdict-en-ja '%s'"
  978. word))))
  979. ("jaj" . (lambda (word)
  980. (shell-command-to-string
  981. (format "sdcv -n -u jmdict-en-ja '%s'"
  982. word))))
  983. ("jag" .
  984. (lambda (word)
  985. (with-temp-buffer
  986. (insert (shell-command-to-string
  987. (format "sdcv -n -u 'Genius English-Japanese' '%s'"
  988. word)))
  989. (html2text)
  990. (buffer-substring (point-min)
  991. (point-max)))))
  992. ("alc" . (lambda (word)
  993. (shell-command-to-string
  994. (format "alc '%s' | head -n 20"
  995. word))))
  996. ("app" . (lambda (word)
  997. (shell-command-to-string
  998. (format "dict_app '%s'"
  999. word))))
  1000. ;; letters broken
  1001. ("ms" .
  1002. (lambda (word)
  1003. (let ((url (concat
  1004. "http://api.microsofttranslator.com/V2/Ajax.svc/"
  1005. "Translate?appId=%s&text=%s&to=%s"))
  1006. (apikey "3C9778666C5BA4B406FFCBEE64EF478963039C51")
  1007. (target "ja")
  1008. (eword (url-hexify-string word)))
  1009. (with-current-buffer (url-retrieve-synchronously
  1010. (format url
  1011. apikey
  1012. eword
  1013. target))
  1014. (message "")
  1015. (goto-char (point-min))
  1016. (search-forward-regexp "^$"
  1017. nil
  1018. t)
  1019. (url-unhex-string (buffer-substring-no-properties
  1020. (point)
  1021. (point-max)))))))
  1022. ))
  1023. ;; (funcall (cdr (assoc "ms"
  1024. ;; ilookup-alist))
  1025. ;; "dictionary")
  1026. ;; (switch-to-buffer (url-retrieve-synchronously "http://api.microsofttranslator.com/V2/Ajax.svc/Translate?appId=3C9778666C5BA4B406FFCBEE64EF478963039C51&text=dictionary&to=ja"))
  1027. ;; (switch-to-buffer (url-retrieve-synchronously "http://google.com"))
  1028. (set-variable 'ilookup-default "ja")
  1029. (when (locate-library "google-translate")
  1030. (defvar ilookup-dict-alist nil)
  1031. (add-to-list 'ilookup-dict-alist
  1032. '("gt" .
  1033. (lambda (word)
  1034. (save-excursion
  1035. (google-translate-translate "auto"
  1036. "ja"
  1037. word))
  1038. (with-current-buffer "*Google Translate*"
  1039. (buffer-substring-no-properties (point-min)
  1040. (point-max)))))))
  1041. )
  1042. (when (autoload-eval-lazily 'google-translate '(google-translate-translate
  1043. google-translate-at-point))
  1044. (set-variable 'google-translate-default-source-language "auto")
  1045. (set-variable 'google-translate-default-target-language "ja"))
  1046. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1047. ;; vc
  1048. (set-variable 'vc-handled-backends '())
  1049. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1050. ;; recentf-mode
  1051. (set-variable 'recentf-save-file (expand-file-name (concat user-emacs-directory
  1052. "recentf")))
  1053. (set-variable 'recentf-max-menu-items 20)
  1054. (set-variable 'recentf-max-saved-items 30)
  1055. (set-variable 'recentf-show-file-shortcuts-flag nil)
  1056. (when (safe-require-or-eval 'recentf)
  1057. (add-to-list 'recentf-exclude
  1058. (regexp-quote recentf-save-file))
  1059. (add-to-list 'recentf-exclude
  1060. (regexp-quote (expand-file-name user-emacs-directory)))
  1061. (define-key ctl-x-map (kbd "C-r") 'recentf-open-files)
  1062. (remove-hook 'find-file-hook
  1063. 'recentf-track-opened-file)
  1064. (defun my-recentf-load-track-save-list ()
  1065. "Load current recentf list from file, track current visiting file, then save
  1066. the list."
  1067. (recentf-load-list)
  1068. (recentf-track-opened-file)
  1069. (recentf-save-list))
  1070. (add-hook 'find-file-hook
  1071. 'my-recentf-load-track-save-list)
  1072. (add-hook 'kill-emacs-hook
  1073. 'recentf-load-list)
  1074. ;;(run-with-idle-timer 5 t 'recentf-save-list)
  1075. ;; (add-hook 'find-file-hook
  1076. ;; (lambda ()
  1077. ;; (recentf-add-file default-directory)))
  1078. (and (autoload-eval-lazily 'recentf-show)
  1079. (define-key ctl-x-map (kbd "C-r") 'recentf-show)
  1080. (add-hook 'recentf-show-before-listing-hook
  1081. 'recentf-load-list))
  1082. (recentf-mode 1)
  1083. (define-key recentf-dialog-mode-map (kbd "<up>") 'previous-line)
  1084. (define-key recentf-dialog-mode-map (kbd "<down>") 'next-line)
  1085. (define-key recentf-dialog-mode-map "p" 'previous-line)
  1086. (define-key recentf-dialog-mode-map "n" 'next-line)
  1087. (add-hook 'recentf-dialog-mode-hook
  1088. (lambda ()
  1089. ;; (recentf-save-list)
  1090. ;; (define-key recentf-dialog-mode-map (kbd "C-x C-f")
  1091. ;; 'my-recentf-cd-and-find-file)
  1092. (cd "~/"))))
  1093. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1094. ;; dired
  1095. (defun my-dired-echo-file-head (arg)
  1096. ""
  1097. (interactive "P")
  1098. (let ((f (dired-get-filename)))
  1099. (message "%s"
  1100. (with-temp-buffer
  1101. (insert-file-contents f)
  1102. (buffer-substring-no-properties
  1103. (point-min)
  1104. (progn (goto-char (point-min))
  1105. (forward-line (1- (if arg
  1106. (prefix-numeric-value arg)
  1107. 7)))
  1108. (point-at-eol)))))))
  1109. (defun my-dired-diff ()
  1110. ""
  1111. (interactive)
  1112. (let ((files (dired-get-marked-files nil nil nil t)))
  1113. (if (eq (car files)
  1114. t)
  1115. (diff (cadr files) (dired-get-filename))
  1116. (message "One file must be marked!"))))
  1117. (defun dired-get-file-info ()
  1118. "dired get file info"
  1119. (interactive)
  1120. (let ((f (shell-quote-argument (dired-get-filename t))))
  1121. (if (file-directory-p f)
  1122. (progn
  1123. (message "Calculating disk usage...")
  1124. (shell-command (concat "du -hsD "
  1125. f)))
  1126. (shell-command (concat "file "
  1127. f)))))
  1128. (defun my-dired-scroll-up ()
  1129. ""
  1130. (interactive)
  1131. (my-dired-previous-line (- (window-height) 1)))
  1132. (defun my-dired-scroll-down ()
  1133. ""
  1134. (interactive)
  1135. (my-dired-next-line (- (window-height) 1)))
  1136. ;; (defun my-dired-forward-line (arg)
  1137. ;; ""
  1138. ;; (interactive "p"))
  1139. (defun my-dired-previous-line (arg)
  1140. ""
  1141. (interactive "p")
  1142. (if (> arg 0)
  1143. (progn
  1144. (if (eq (line-number-at-pos)
  1145. 1)
  1146. (goto-char (point-max))
  1147. (forward-line -1))
  1148. (my-dired-previous-line (if (or (dired-get-filename nil t)
  1149. (dired-get-subdir))
  1150. (- arg 1)
  1151. arg)))
  1152. (dired-move-to-filename)))
  1153. (defun my-dired-next-line (arg)
  1154. ""
  1155. (interactive "p")
  1156. (if (> arg 0)
  1157. (progn
  1158. (if (eq (point)
  1159. (point-max))
  1160. (goto-char (point-min))
  1161. (forward-line 1))
  1162. (my-dired-next-line (if (or (dired-get-filename nil t)
  1163. (dired-get-subdir))
  1164. (- arg 1)
  1165. arg)))
  1166. (dired-move-to-filename)))
  1167. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  1168. (if (eq window-system 'mac)
  1169. (setq dired-listing-switches "-lhF")
  1170. (setq dired-listing-switches "-lhF --time-style=long-iso")
  1171. )
  1172. (setq dired-listing-switches "-lhF")
  1173. (put 'dired-find-alternate-file 'disabled nil)
  1174. ;; when using dired-find-alternate-file
  1175. ;; reuse current dired buffer for the file to open
  1176. (set-variable 'dired-ls-F-marks-symlinks t)
  1177. (with-eval-after-load 'ls-lisp
  1178. (setq ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  1179. (setq ls-lisp-dirs-first t)
  1180. (setq ls-lisp-use-localized-time-format t)
  1181. (setq ls-lisp-format-time-list
  1182. '("%Y-%m-%d %H:%M"
  1183. "%Y-%m-%d ")))
  1184. (set-variable 'dired-dwim-target t)
  1185. (set-variable 'dired-isearch-filenames t)
  1186. (set-variable 'dired-hide-details-hide-symlink-targets nil)
  1187. (set-variable 'dired-hide-details-hide-information-lines nil)
  1188. ;; (add-hook 'dired-after-readin-hook
  1189. ;; 'my-replace-nasi-none)
  1190. ;; (add-hook 'after-init-hook
  1191. ;; (lambda ()
  1192. ;; (dired ".")))
  1193. (with-eval-after-load 'dired
  1194. (safe-require-or-eval 'ls-lisp)
  1195. (defvar dired-mode-map (make-sparse-keymap))
  1196. (define-key dired-mode-map "o" 'my-dired-x-open)
  1197. (define-key dired-mode-map "i" 'dired-get-file-info)
  1198. (define-key dired-mode-map "f" 'find-file)
  1199. (define-key dired-mode-map "!" 'shell-command)
  1200. (define-key dired-mode-map "&" 'async-shell-command)
  1201. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1202. (define-key dired-mode-map "=" 'my-dired-diff)
  1203. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1204. (define-key dired-mode-map "b" 'gtkbm)
  1205. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  1206. (define-key dired-mode-map "@" (lambda ()
  1207. (interactive) (my-x-open ".")))
  1208. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1209. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  1210. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  1211. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  1212. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  1213. (substitute-key-definition 'dired-next-line
  1214. 'my-dired-next-line
  1215. dired-mode-map)
  1216. (substitute-key-definition 'dired-previous-line
  1217. 'my-dired-previous-line
  1218. dired-mode-map)
  1219. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  1220. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  1221. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  1222. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  1223. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1224. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1225. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  1226. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  1227. (add-hook 'dired-mode-hook
  1228. (lambda ()
  1229. (when (fboundp 'dired-hide-details-mode)
  1230. (dired-hide-details-mode t)
  1231. (local-set-key "l" 'dired-hide-details-mode))
  1232. (let ((file "._Icon\015"))
  1233. (when nil
  1234. '(file-readable-p file)
  1235. (delete-file file)))))
  1236. (when (autoload-eval-lazily 'pack '(dired-do-pack-or-unpack pack-pack))
  1237. (with-eval-after-load 'dired
  1238. (define-key dired-mode-map "P" 'pack-dired-dwim)))
  1239. (when (autoload-eval-lazily 'dired-list-all-mode)
  1240. (setq dired-listing-switches "-lhF")
  1241. (with-eval-after-load 'dired
  1242. (define-key dired-mode-map "a" 'dired-list-all-mode))))
  1243. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1244. ;; misc funcs
  1245. (defalias 'qcalc 'quick-calc)
  1246. (defun memo (&optional dir)
  1247. "Open memo.txt in DIR."
  1248. (interactive)
  1249. (pop-to-buffer (find-file-noselect (concat (if dir
  1250. (file-name-as-directory dir)
  1251. "")
  1252. "memo.txt"))))
  1253. (defvar my-rgrep-alist
  1254. `(
  1255. ;; the silver searcher
  1256. ("ag"
  1257. (executable-find "ag")
  1258. "ag --nocolor --nogroup --nopager --filename ")
  1259. ;; ack
  1260. ("ack"
  1261. (executable-find "ack")
  1262. "ack --nocolor --nogroup --nopager --with-filename ")
  1263. ;; gnu global
  1264. ("global"
  1265. (and (require 'gtags nil t)
  1266. (executable-find "global")
  1267. (gtags-get-rootpath))
  1268. "global --result grep ")
  1269. ;; git grep
  1270. ("gitgrep"
  1271. (eq 0
  1272. (shell-command "git rev-parse --git-dir"))
  1273. "git --no-pager -c color.grep=false grep -nH -e ")
  1274. ;; grep
  1275. ("grep"
  1276. t
  1277. ,(concat "find . "
  1278. "-path '*/.git' -prune -o "
  1279. "-path '*/.svn' -prune -o "
  1280. "-type f -print0 | "
  1281. "xargs -0 grep -nH -e "))
  1282. )
  1283. "Alist of rgrep command.
  1284. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  1285. condition to choose COMMAND when evaluated.")
  1286. (defvar my-rgrep-default nil
  1287. "Default command name for my-rgrep.")
  1288. (defun my-rgrep-grep-command (&optional name alist)
  1289. "Return recursive grep command for current directory or nil.
  1290. If NAME is given, use that without testing.
  1291. Commands are searched from ALIST."
  1292. (if alist
  1293. (if name
  1294. ;; if name is given search that from alist and return the command
  1295. (nth 2 (assoc name
  1296. alist))
  1297. ;; if name is not given try test in 1th elem
  1298. (let ((car (car alist))
  1299. (cdr (cdr alist)))
  1300. (if (eval (nth 1 car))
  1301. ;; if the condition is true return the command
  1302. (nth 2 car)
  1303. ;; try next one
  1304. (and cdr
  1305. (my-rgrep-grep-command name cdr)))))
  1306. ;; if alist is not given set default value
  1307. (my-rgrep-grep-command name my-rgrep-alist)))
  1308. (defun my-rgrep (command-args)
  1309. "My recursive grep. Run COMMAND-ARGS."
  1310. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  1311. nil)))
  1312. (if cmd
  1313. (list (read-shell-command "grep command: "
  1314. cmd
  1315. 'grep-find-history))
  1316. (error "My-Rgrep: Command for rgrep not found")
  1317. )))
  1318. (compilation-start command-args
  1319. 'grep-mode))
  1320. ;; (defun my-rgrep-symbol-at-point (command-args)
  1321. ;; "My recursive grep. Run COMMAND-ARGS."
  1322. ;; (interactive (list (read-shell-command "grep command: "
  1323. ;; (concat (my-rgrep-grep-command)
  1324. ;; " "
  1325. ;; (thing-at-point 'symbol))
  1326. ;; 'grep-find-history)))
  1327. ;; (compilation-start command-args
  1328. ;; 'grep-mode))
  1329. (defmacro define-my-rgrep (name)
  1330. "Define rgrep for NAME."
  1331. `(defun ,(intern (concat "my-rgrep-"
  1332. name)) ()
  1333. ,(format "My recursive grep by %s."
  1334. name)
  1335. (interactive)
  1336. (let ((my-rgrep-default ,name))
  1337. (if (called-interactively-p 'any)
  1338. (call-interactively 'my-rgrep)
  1339. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  1340. )
  1341. (define-my-rgrep "ack")
  1342. (define-my-rgrep "ag")
  1343. (define-my-rgrep "gitgrep")
  1344. (define-my-rgrep "grep")
  1345. (define-my-rgrep "global")
  1346. (define-key ctl-x-map "s" 'my-rgrep)
  1347. ;; (defun make ()
  1348. ;; "Run \"make -k\" in current directory."
  1349. ;; (interactive)
  1350. ;; (compile "make -k"))
  1351. (defalias 'make 'compile)
  1352. (define-key ctl-x-map "c" 'compile)
  1353. ;;;;;;;;;;;;;;;;;;;;;;;
  1354. ;; adoc-simple-mode
  1355. (when (safe-require-or-eval 'adoc-mode)
  1356. (defvar adoc-simple-font-lock-keywords
  1357. nil)
  1358. (define-derived-mode adoc-simple-mode adoc-mode
  1359. "Adoc-Simple"
  1360. "Major mode for editing AsciiDoc text files.
  1361. This mode is a simplified version of `adoc-mode'."
  1362. '(set (make-local-variable 'font-lock-defaults)
  1363. '(adoc-simple-font-lock-keywords
  1364. nil nil nil nil
  1365. (font-lock-multiline . t)
  1366. (font-lock-mark-block-function . adoc-font-lock-mark-block-function))))
  1367. (add-to-list 'auto-mode-alist
  1368. '("\\.adoc\\'" . adoc-simple-mode)))
  1369. (when (and (safe-require-or-eval 'google-translate)
  1370. (safe-require-or-eval 'google-translate-smooth-ui))
  1371. (add-to-list 'google-translate-translation-directions-alist
  1372. '("en" . "ja"))
  1373. (defun translate-echo-at-point ()
  1374. "Translate popup at point."
  1375. (interactive)
  1376. (let ((google-translate-output-destination 'echo-area))
  1377. (google-translate-translate "auto" "ja" (current-word t t))))
  1378. (define-minor-mode auto-translate-mode
  1379. "Translate word at point automatically."
  1380. :global nil
  1381. :lighter "ATranslate"))
  1382. ;;; emacs.el ends here