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.
 
 
 
 
 
 

1579 lines
52 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 nil)
  305. (setq-default truncate-lines nil)
  306. ;; (pc-selection-mode 1) ; make some already defined keybind back to default
  307. (delete-selection-mode 1)
  308. (cua-mode 0)
  309. (setq line-move-visual nil)
  310. ;; key bindings
  311. ;; moving around
  312. ;; (global-set-key (kbd "M-j") 'next-line)
  313. ;; (global-set-key (kbd "M-k") 'previous-line)
  314. ;; (global-set-key (kbd "M-h") 'backward-char)
  315. ;; (global-set-key (kbd "M-l") 'forward-char)
  316. ;;(keyboard-translate ?\M-j ?\C-j)
  317. ;; (global-set-key (kbd "M-p") 'backward-paragraph)
  318. (define-key esc-map "p" 'backward-paragraph)
  319. ;; (global-set-key (kbd "M-n") 'forward-paragraph)
  320. (define-key esc-map "n" 'forward-paragraph)
  321. (global-set-key (kbd "C-<up>") 'scroll-down-line)
  322. (global-set-key (kbd "C-<down>") 'scroll-up-line)
  323. (global-set-key (kbd "C-<left>") 'scroll-down)
  324. (global-set-key (kbd "C-<right>") 'scroll-up)
  325. (global-set-key (kbd "<select>") 'ignore) ; 'previous-line-mark)
  326. (define-key ctl-x-map (kbd "ESC x") 'execute-extended-command)
  327. (define-key ctl-x-map (kbd "ESC :") 'eval-expression)
  328. ;; C-h and DEL
  329. (global-set-key (kbd "C-h") (kbd "DEL"))
  330. (global-set-key (kbd "C-m") 'reindent-then-newline-and-indent)
  331. ;; (global-set-key (kbd "C-o") (kbd "C-e C-m"))
  332. (define-key esc-map "k" 'my-copy-whole-line)
  333. ;; (global-set-key "\C-z" 'undo) ; undo is M-u
  334. (define-key esc-map "u" 'undo)
  335. (define-key esc-map "i" (kbd "ESC TAB"))
  336. ;; (global-set-key (kbd "C-r") 'query-replace-regexp)
  337. (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  338. (global-set-key (kbd "C-r") 'isearch-backward-regexp)
  339. (define-key my-prefix-map (kbd "C-o") 'occur)
  340. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  341. ;; title and mode-line
  342. (when (safe-require-or-eval 'terminal-title)
  343. ;; if TERM is not screen use default value
  344. (if (getenv "TMUX")
  345. ;; if use tmux locally just basename of current dir
  346. (set-variable 'terminal-title-format
  347. '((file-name-nondirectory (directory-file-name
  348. default-directory))))
  349. (if (and (let ((tty-type (frame-parameter nil
  350. 'tty-type)))
  351. (and tty-type
  352. (equal (car (split-string tty-type
  353. "-"))
  354. "screen")))
  355. (not (getenv "SSH_CONNECTION")))
  356. (set-variable 'terminal-title-format
  357. '((file-name-nondirectory (directory-file-name
  358. default-directory))))
  359. ;; seems that TMUX is used locally and ssh to remote host
  360. (set-variable 'terminal-title-format
  361. `("em:"
  362. ,user-login-name
  363. "@"
  364. ,(car (split-string (system-name)
  365. "\\."))
  366. ":"
  367. default-directory))
  368. )
  369. )
  370. (terminal-title-mode))
  371. (setq eol-mnemonic-dos "\\r\\n")
  372. (setq eol-mnemonic-mac "\\r")
  373. (setq eol-mnemonic-unix "\\n")
  374. (which-function-mode 0)
  375. (line-number-mode 0)
  376. (column-number-mode 0)
  377. (size-indication-mode 0)
  378. (setq mode-line-position
  379. '(:eval (format "L%%l/%d,C%%c"
  380. (count-lines (point-max)
  381. (point-min)))))
  382. (when (safe-require-or-eval 'git-ps1-mode)
  383. (git-ps1-mode))
  384. ;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title
  385. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  386. ;; minibuffer
  387. (setq insert-default-directory t)
  388. (setq completion-ignore-case t
  389. read-file-name-completion-ignore-case t
  390. read-buffer-completion-ignore-case t)
  391. (setq resize-mini-windows t)
  392. (temp-buffer-resize-mode 1)
  393. (savehist-mode 1)
  394. (defvar display-time-format "%Y/%m/%d %a %H:%M")
  395. (fset 'yes-or-no-p 'y-or-n-p)
  396. ;; complete symbol when `eval'
  397. (define-key read-expression-map (kbd "TAB") 'completion-at-point)
  398. (define-key minibuffer-local-map (kbd "C-u")
  399. (lambda () (interactive) (delete-region (point-at-bol) (point))))
  400. ;; I dont know these bindings are good
  401. (define-key minibuffer-local-map (kbd "C-p") (kbd "ESC p"))
  402. (define-key minibuffer-local-map (kbd "C-n") (kbd "ESC n"))
  403. (when (safe-require-or-eval 'minibuffer-line)
  404. (set-face-underline 'minibuffer-line nil)
  405. (set-variable 'minibuffer-line-refresh-interval
  406. 25)
  407. (set-variable 'minibuffer-line-format
  408. `(,(concat user-login-name
  409. "@"
  410. (car (split-string (system-name)
  411. "\\."))
  412. ":")
  413. (:eval (abbreviate-file-name (or buffer-file-name
  414. default-directory)))
  415. (:eval (and (fboundp 'git-ps1-mode-get-current)
  416. (git-ps1-mode-get-current " [GIT:%s]")))
  417. " "
  418. (:eval (format-time-string display-time-format))))
  419. (minibuffer-line-mode 1)
  420. )
  421. (when (safe-require-or-eval 'prompt-text)
  422. (set-variable 'prompt-text-format
  423. `(,(concat ""
  424. user-login-name
  425. "@"
  426. (car (split-string (system-name)
  427. "\\."))
  428. ":")
  429. (:eval (abbreviate-file-name (or buffer-file-name
  430. default-directory)))
  431. (:eval (and (fboundp 'git-ps1-mode-get-current)
  432. (git-ps1-mode-get-current " [GIT:%s]")))
  433. " "
  434. (:eval (format-time-string display-time-format))
  435. "\n"
  436. (:eval (symbol-name this-command))
  437. ": "))
  438. (prompt-text-mode 1))
  439. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  440. ;; letters, font-lock mode and fonts
  441. ;; (set-face-background 'vertical-border (face-foreground 'mode-line))
  442. ;; (set-window-margins (selected-window) 1 1)
  443. (and (or (eq system-type 'Darwin)
  444. (eq system-type 'darwin))
  445. (fboundp 'mac-set-input-method-parameter)
  446. (mac-set-input-method-parameter 'japanese 'cursor-color "red")
  447. (mac-set-input-method-parameter 'roman 'cursor-color "black"))
  448. (when (and (boundp 'input-method-activate-hook) ; i dont know this is correct
  449. (boundp 'input-method-inactivate-hook))
  450. (add-hook 'input-method-activate-hook
  451. (lambda () (set-cursor-color "red")))
  452. (add-hook 'input-method-inactivate-hook
  453. (lambda () (set-cursor-color "black"))))
  454. (when (safe-require-or-eval 'paren)
  455. (show-paren-mode 1)
  456. (setq show-paren-delay 0.5
  457. show-paren-style 'parenthesis) ; mixed is hard to read
  458. ;; (set-face-background 'show-paren-match
  459. ;; "black")
  460. ;; ;; (face-foreground 'default))
  461. ;; (set-face-foreground 'show-paren-match
  462. ;; "white")
  463. ;; (set-face-inverse-video-p 'show-paren-match
  464. ;; t)
  465. )
  466. (transient-mark-mode 1)
  467. (global-font-lock-mode 1)
  468. (setq font-lock-global-modes
  469. '(not
  470. help-mode
  471. eshell-mode
  472. ;;term-mode
  473. Man-mode))
  474. ;; (standard-display-ascii ?\n "$\n")
  475. ;; (defvar my-eol-face
  476. ;; '(("\n" . (0 font-lock-comment-face t nil)))
  477. ;; )
  478. ;; (defvar my-tab-face
  479. ;; '(("\t" . '(0 highlight t nil))))
  480. (defvar my-jspace-face
  481. '(("\u3000" . '(0 highlight t nil))))
  482. (add-hook 'font-lock-mode-hook
  483. (lambda ()
  484. ;; (font-lock-add-keywords nil my-eol-face)
  485. (font-lock-add-keywords nil my-jspace-face)
  486. ))
  487. (when (safe-require-or-eval 'whitespace)
  488. (add-to-list 'whitespace-display-mappings
  489. ;; We need t since last one takes precedence
  490. `(tab-mark ?\t ,(vconcat "^I\t")) t)
  491. ;; (add-to-list 'whitespace-display-mappings
  492. ;; `(newline-mark ?\n ,(vconcat "$\n")))
  493. (setq whitespace-style '(face
  494. trailing ; trailing blanks
  495. newline ; newlines
  496. newline-mark ; use display table for newline
  497. tab-mark
  498. empty ; empty lines at beg or end of buffer
  499. lines-tail ; lines over 80
  500. ))
  501. ;; (setq whitespace-newline 'font-lock-comment-face)
  502. (set-variable 'whitespace-line-column nil)
  503. (global-whitespace-mode t)
  504. (add-hook 'dired-mode-hook
  505. (lambda ()
  506. (set (make-local-variable 'whitespace-style) nil)))
  507. (if (eq (display-color-cells)
  508. 256)
  509. (set-face-foreground 'whitespace-newline "color-109")
  510. ;; (progn
  511. ;; (set-face-bold-p 'whitespace-newline
  512. ;; t))
  513. ))
  514. (and nil
  515. (safe-require-or-eval 'fill-column-indicator)
  516. (setq fill-column-indicator))
  517. ;; highlight current line
  518. ;; http://wiki.riywo.com/index.php?Meadow
  519. (face-spec-set 'hl-line
  520. '((((min-colors 256)
  521. (background dark))
  522. (:background "color-234"))
  523. (((min-colors 256)
  524. (background light))
  525. (:background "color-234"))
  526. (t
  527. (:underline "black"))))
  528. (set-variable 'hl-line-global-modes
  529. '(not
  530. term-mode))
  531. (global-hl-line-mode 1) ;; (hl-line-mode 1)
  532. (set-face-foreground 'font-lock-regexp-grouping-backslash "#666")
  533. (set-face-foreground 'font-lock-regexp-grouping-construct "#f60")
  534. ;;(safe-require-or-eval 'set-modeline-color)
  535. ;; (let ((fg (face-foreground 'default))
  536. ;; (bg (face-background 'default)))
  537. ;; (set-face-background 'mode-line-inactive
  538. ;; (if (face-inverse-video-p 'mode-line) fg bg))
  539. ;; (set-face-foreground 'mode-line-inactive
  540. ;; (if (face-inverse-video-p 'mode-line) bg fg)))
  541. ;; (set-face-underline 'mode-line-inactive
  542. ;; t)
  543. ;; (set-face-underline 'vertical-border
  544. ;; nil)
  545. (when (safe-require-or-eval 'end-mark)
  546. (global-end-mark-mode))
  547. (when (safe-require-or-eval 'auto-highlight-symbol)
  548. (set-variable 'ahs-idle-interval 0.6)
  549. (global-auto-highlight-symbol-mode 1))
  550. (when (safe-require-or-eval 'cyberpunk-theme)
  551. (load-theme 'cyberpunk t)
  552. (set-face-attribute 'button
  553. nil
  554. :inherit 'highlight)
  555. (set-face-foreground 'mode-line-inactive
  556. "white")
  557. )
  558. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  559. ;; file handling
  560. (when (safe-require-or-eval 'editorconfig)
  561. ;; (set-variable 'editorconfig-get-properties-function
  562. ;; 'editorconfig-core-get-properties-hash)
  563. (editorconfig-mode 1))
  564. (when (fboundp 'editorconfig-custom-majormode)
  565. (add-hook 'editorconfig-custom-hooks
  566. 'editorconfig-custom-majormode))
  567. (setq revert-without-query '(".+"))
  568. ;; save cursor position
  569. (when (safe-require-or-eval 'saveplace)
  570. (setq-default save-place t)
  571. (setq save-place-file (concat user-emacs-directory
  572. "places")))
  573. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  574. (setq make-backup-files t)
  575. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  576. (setq backup-directory-alist
  577. (cons (cons "\\.*$" (expand-file-name (concat user-emacs-directory
  578. "backup")))
  579. backup-directory-alist))
  580. (setq version-control 'never)
  581. (setq delete-old-versions t)
  582. (setq auto-save-list-file-prefix (expand-file-name (concat user-emacs-directory
  583. "auto-save/")))
  584. (setq delete-auto-save-files t)
  585. (add-to-list 'completion-ignored-extensions ".bak")
  586. ;; (setq delete-by-moving-to-trash t
  587. ;; trash-directory "~/.emacs.d/trash")
  588. (add-hook 'after-save-hook
  589. 'executable-make-buffer-file-executable-if-script-p)
  590. (set (defvar bookmark-default-file)
  591. (expand-file-name (concat user-emacs-directory
  592. "bmk")))
  593. (with-eval-after-load 'recentf
  594. (defvar recentf-exclude nil)
  595. (add-to-list 'recentf-exclude
  596. (regexp-quote bookmark-default-file)))
  597. (when (safe-require-or-eval 'smart-revert)
  598. (smart-revert-on))
  599. ;; autosave
  600. (when (safe-require-or-eval 'autosave)
  601. (autosave-set 8))
  602. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  603. ;; buffer killing
  604. ;; (defun my-delete-window-killing-buffer () nil)
  605. (defun my-query-kill-current-buffer ()
  606. "Interactively kill current buffer."
  607. (interactive)
  608. (if (y-or-n-p (concat "kill current buffer? :"))
  609. (kill-buffer (current-buffer))))
  610. ;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
  611. (substitute-key-definition 'kill-buffer
  612. 'my-query-kill-current-buffer
  613. global-map)
  614. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  615. ;; share clipboard with x
  616. ;; this page describes this in details, but only these sexps seem to be needed
  617. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  618. (and (not window-system)
  619. (not (eq window-system 'mac))
  620. (getenv "DISPLAY")
  621. (not (equal (getenv "DISPLAY") ""))
  622. (executable-find "xclip")
  623. ;; (< emacs-major-version 24)
  624. (safe-require-or-eval 'xclip)
  625. nil
  626. (turn-on-xclip))
  627. (and (eq system-type 'darwin)
  628. (safe-require-or-eval 'pasteboard)
  629. (turn-on-pasteboard))
  630. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  631. ;; some modes and hooks
  632. ;; Workaround to avoid ensime error
  633. (defvar ensime-mode-key-prefix nil)
  634. ;; http://qiita.com/sune2/items/b73037f9e85962f5afb7
  635. (when (safe-require-or-eval 'company)
  636. (global-company-mode)
  637. (set-variable 'company-idle-delay 0.5)
  638. (set-variable 'company-minimum-prefix-length 2)
  639. (set-variable 'company-selection-wrap-around t))
  640. ;; https://github.com/lunaryorn/flycheck
  641. (when (safe-require-or-eval 'flycheck)
  642. (call-after-init 'global-flycheck-mode))
  643. (set-variable 'ac-ignore-case nil)
  644. (when (autoload-eval-lazily 'term-run '(term-run-shell-command term-run))
  645. (define-key ctl-x-map "t" 'term-run-shell-command))
  646. (add-to-list 'safe-local-variable-values
  647. '(encoding utf-8))
  648. (setq enable-local-variables :safe)
  649. (when (safe-require-or-eval 'remember-major-modes-mode)
  650. (remember-major-modes-mode 1))
  651. ;; Detect file type from shebang and set major-mode.
  652. (add-to-list 'interpreter-mode-alist
  653. '("python3" . python-mode))
  654. (add-to-list 'interpreter-mode-alist
  655. '("python2" . python-mode))
  656. (with-eval-after-load 'python
  657. (defvar python-mode-map (make-sparse-keymap))
  658. (define-key python-mode-map (kbd "C-m") 'newline-and-indent))
  659. ;; http://fukuyama.co/foreign-regexp
  660. '(and (safe-require-or-eval 'foreign-regexp)
  661. (progn
  662. (setq foreign-regexp/regexp-type 'perl)
  663. '(setq reb-re-syntax 'foreign-regexp)
  664. ))
  665. (autoload-eval-lazily 'sql '(sql-mode)
  666. (safe-require-or-eval 'sql-indent))
  667. (when (autoload-eval-lazily 'git-command)
  668. (define-key ctl-x-map "g" 'git-command))
  669. (when (safe-require-or-eval 'git-commit)
  670. (global-git-commit-mode 1))
  671. (autoload-eval-lazily 'sl)
  672. (with-eval-after-load 'rst
  673. (define-key rst-mode-map (kbd "C-m") 'newline-and-indent))
  674. ;; jdee is too old! use malabar instead
  675. (with-eval-after-load 'jdee
  676. (add-hook 'jdee-mode-hook
  677. (lambda ()
  678. (make-local-variable 'global-mode-string)
  679. (add-to-list 'global-mode-string
  680. mode-line-position))))
  681. ;; Cannot enable error thrown. Why???
  682. ;; https://github.com/m0smith/malabar-mode#Installation
  683. ;; (when (autoload-eval-lazily 'malabar-mode)
  684. ;; (add-to-list 'load-path
  685. ;; (expand-file-name (concat user-emacs-directory "/cedet")))
  686. ;; (safe-require-or-eval 'cedet-devel-load)
  687. ;; (call-after-init 'activate-malabar-mode))
  688. (with-eval-after-load 'make-mode
  689. (defvar makefile-mode-map (make-sparse-keymap))
  690. (define-key makefile-mode-map (kbd "C-m") 'newline-and-indent)
  691. ;; this functions is set in write-file-functions, i cannot find any
  692. ;; good way to remove this.
  693. (fset 'makefile-warn-suspicious-lines 'ignore))
  694. (with-eval-after-load 'verilog-mode
  695. (defvar verilog-mode-map (make-sparse-keymap))
  696. (define-key verilog-mode-map ";" 'self-insert-command))
  697. (setq diff-switches "-u")
  698. (with-eval-after-load 'diff-mode
  699. ;; (when (and (eq major-mode
  700. ;; 'diff-mode)
  701. ;; (not buffer-file-name))
  702. ;; ;; do not pass when major-mode is derived mode of diff-mode
  703. ;; (view-mode 1))
  704. (set-face-attribute 'diff-header nil
  705. :foreground nil
  706. :background nil
  707. :weight 'bold)
  708. (set-face-attribute 'diff-file-header nil
  709. :foreground nil
  710. :background nil
  711. :weight 'bold)
  712. (set-face-foreground 'diff-index-face "blue")
  713. (set-face-attribute 'diff-hunk-header nil
  714. :foreground "cyan"
  715. :weight 'normal)
  716. (set-face-attribute 'diff-context nil
  717. ;; :foreground "white"
  718. :foreground nil
  719. :weight 'normal)
  720. (set-face-foreground 'diff-removed-face "red")
  721. (set-face-foreground 'diff-added-face "green")
  722. (set-face-background 'diff-removed-face nil)
  723. (set-face-background 'diff-added-face nil)
  724. (set-face-attribute 'diff-changed nil
  725. :foreground "magenta"
  726. :weight 'normal)
  727. (set-face-attribute 'diff-refine-change nil
  728. :foreground nil
  729. :background nil
  730. :weight 'bold
  731. :inverse-video t)
  732. ;; Annoying !
  733. ;;(diff-auto-refine-mode)
  734. )
  735. ;; (ffap-bindings)
  736. (set-variable 'browse-url-browser-function
  737. 'eww-browse-url)
  738. (set-variable 'sh-here-document-word "__EOC__")
  739. (when (autoload-eval-lazily 'adoc-mode
  740. nil
  741. (defvar adoc-mode-map (make-sparse-keymap))
  742. (define-key adoc-mode-map (kbd "C-m") 'newline))
  743. (setq auto-mode-alist
  744. `(("\\.adoc\\'" . adoc-mode)
  745. ("\\.asciidoc\\'" . adoc-mode)
  746. ,@auto-mode-alist)))
  747. (with-eval-after-load 'markup-faces
  748. ;; Is this too match ?
  749. (set-face-foreground 'markup-meta-face
  750. "color-245")
  751. (set-face-foreground 'markup-meta-hide-face
  752. "color-245")
  753. )
  754. ;; TODO: check if this is required
  755. (when (autoload-eval-lazily 'groovy-mode nil
  756. (defvar groovy-mode-map (make-sparse-keymap))
  757. (define-key groovy-mode-map "(" 'self-insert-command)
  758. (define-key groovy-mode-map ")" 'self-insert-command)
  759. )
  760. (add-to-list 'auto-mode-alist
  761. '("build\\.gradle\\'" . groovy-mode)))
  762. (with-eval-after-load 'yaml-mode
  763. (defvar yaml-mode-map (make-sparse-keymap))
  764. (define-key yaml-mode-map (kbd "C-m") 'newline))
  765. (with-eval-after-load 'html-mode
  766. (defvar html-mode-map (make-sparse-keymap))
  767. (define-key html-mode-map (kbd "C-m") 'reindent-then-newline-and-indent))
  768. (with-eval-after-load 'text-mode
  769. (define-key text-mode-map (kbd "C-m") 'newline))
  770. (add-to-list 'Info-default-directory-list
  771. (expand-file-name "~/.info/emacs-ja"))
  772. (with-eval-after-load 'apropos
  773. (defvar apropos-mode-map (make-sparse-keymap))
  774. (define-key apropos-mode-map "n" 'next-line)
  775. (define-key apropos-mode-map "p" 'previous-line))
  776. ;; `isearch' library does not call `provide' so cannot use with-eval-after-load
  777. ;; (define-key isearch-mode-map
  778. ;; (kbd "C-j") 'isearch-other-control-char)
  779. ;; (define-key isearch-mode-map
  780. ;; (kbd "C-k") 'isearch-other-control-char)
  781. ;; (define-key isearch-mode-map
  782. ;; (kbd "C-h") 'isearch-other-control-char)
  783. (define-key isearch-mode-map (kbd "C-h") 'isearch-delete-char)
  784. (define-key isearch-mode-map (kbd "M-r")
  785. 'isearch-query-replace-regexp)
  786. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  787. (setq lazy-highlight-cleanup nil)
  788. ;; face for isearch highlighing
  789. (set-face-attribute 'lazy-highlight
  790. nil
  791. :foreground `unspecified
  792. :background `unspecified
  793. :underline t
  794. ;; :weight `bold
  795. )
  796. (add-hook 'outline-mode-hook
  797. (lambda ()
  798. (when (string-match "\\.md\\'" buffer-file-name)
  799. (set (make-local-variable 'outline-regexp) "#+ "))))
  800. (add-to-list 'auto-mode-alist (cons "\\.ol\\'" 'outline-mode))
  801. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  802. (when (autoload-eval-lazily 'markdown-mode
  803. '(markdown-mode gfm-mode)
  804. (defvar gfm-mode-map (make-sparse-keymap))
  805. (define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline))
  806. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
  807. (set-variable 'markdown-command (or (executable-find "markdown")
  808. (executable-find "markdown.pl")
  809. ""))
  810. (add-hook 'markdown-mode-hook
  811. (lambda ()
  812. (outline-minor-mode 1)
  813. (flyspell-mode)
  814. (set (make-local-variable 'comment-start) ";")))
  815. )
  816. ;; c-mode
  817. ;; http://www.emacswiki.org/emacs/IndentingC
  818. ;; http://en.wikipedia.org/wiki/Indent_style
  819. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  820. ;; http://seesaawiki.jp/whiteflare503/d/Emacs%20%a5%a4%a5%f3%a5%c7%a5%f3%a5%c8
  821. (with-eval-after-load 'cc-vars
  822. (defvar c-default-style nil)
  823. (add-to-list 'c-default-style
  824. '(c-mode . "k&r"))
  825. (add-to-list 'c-default-style
  826. '(c++-mode . "k&r"))
  827. (add-hook 'c-mode-common-hook
  828. (lambda ()
  829. ;; why c-basic-offset in k&r style defaults to 5 ???
  830. (set-variable 'c-basic-offset 4)
  831. (set-variable 'indent-tabs-mode nil)
  832. ;; (set-face-foreground 'font-lock-keyword-face "blue")
  833. (c-toggle-hungry-state -1)
  834. ;; (and (require 'gtags nil t)
  835. ;; (gtags-mode 1))
  836. )))
  837. (autoload-eval-lazily 'js2-mode nil
  838. ;; currently do not use js2-mode
  839. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  840. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  841. (defvar js2-mode-map (make-sparse-keymap))
  842. (define-key js2-mode-map (kbd "C-m") (lambda ()
  843. (interactive)
  844. (js2-enter-key)
  845. (indent-for-tab-command)))
  846. ;; (add-hook (kill-local-variable 'before-save-hook)
  847. ;; 'js2-before-save)
  848. ;; (add-hook 'before-save-hook
  849. ;; 'my-indent-buffer
  850. ;; nil
  851. ;; t)
  852. )
  853. (add-to-list 'interpreter-mode-alist
  854. '("node" . js-mode))
  855. (when (autoload-eval-lazily 'flymake-jslint
  856. '(flymake-jslint-load))
  857. (autoload-eval-lazily 'js nil
  858. (add-hook 'js-mode-hook
  859. 'flymake-jslint-load)))
  860. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  861. (with-eval-after-load 'uniquify
  862. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  863. (setq uniquify-ignore-buffers-re "*[^*]+*")
  864. (setq uniquify-min-dir-content 1))
  865. (with-eval-after-load 'view
  866. (defvar view-mode-map (make-sparse-keymap))
  867. (define-key view-mode-map "j" 'scroll-up-line)
  868. (define-key view-mode-map "k" 'scroll-down-line)
  869. (define-key view-mode-map "v" 'toggle-read-only)
  870. (define-key view-mode-map "q" 'bury-buffer)
  871. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  872. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  873. ;; (define-key view-mode-map
  874. ;; "n" 'nonincremental-repeat-search-forward)
  875. ;; (define-key view-mode-map
  876. ;; "N" 'nonincremental-repeat-search-backward)
  877. (define-key view-mode-map "/" 'isearch-forward-regexp)
  878. (define-key view-mode-map "?" 'isearch-backward-regexp)
  879. (define-key view-mode-map "n" 'isearch-repeat-forward)
  880. (define-key view-mode-map "N" 'isearch-repeat-backward)
  881. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point))
  882. (global-set-key "\M-r" 'view-mode)
  883. ;; (setq view-read-only t)
  884. (add-hook 'Man-mode-hook
  885. (lambda ()
  886. (view-mode 1)
  887. (setq truncate-lines nil)))
  888. (set-variable 'Man-notify-method (if window-system
  889. 'newframe
  890. 'aggressive))
  891. (set-variable 'woman-cache-filename (expand-file-name (concat user-emacs-directory
  892. "woman_cache.el")))
  893. ;; not work because man.el will be loaded when man called
  894. (defalias 'man 'woman)
  895. (add-to-list 'auto-mode-alist
  896. '("tox\\.ini\\'" . conf-unix-mode))
  897. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  898. ;; buffer switching
  899. (defvar bs-configurations)
  900. (when (autoload-eval-lazily 'bs '(bs-show)
  901. (add-to-list 'bs-configurations
  902. '("specials" "^\\*" nil ".*" nil nil))
  903. (defvar bs-mode-map)
  904. (defvar bs-current-configuration)
  905. (define-key bs-mode-map (kbd "t")
  906. (lambda ()
  907. (interactive)
  908. (if (string= "specials"
  909. bs-current-configuration)
  910. (bs-set-configuration "files")
  911. (bs-set-configuration "specials"))
  912. (bs-refresh)
  913. (bs-message-without-log "%s"
  914. (bs--current-config-message))))
  915. ;; (setq bs-configurations (list
  916. ;; '("processes" nil get-buffer-process ".*" nil nil)
  917. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  918. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  919. )
  920. (defalias 'list-buffers 'bs-show)
  921. (set-variable 'bs-default-configuration "files")
  922. (set-variable 'bs-default-sort-name "by nothing")
  923. (add-hook 'bs-mode-hook
  924. (lambda ()
  925. (set (make-local-variable 'scroll-margin) 0))))
  926. ;;(iswitchb-mode 1)
  927. (icomplete-mode)
  928. (defun iswitchb-buffer-display-other-window ()
  929. "Do iswitchb in other window."
  930. (interactive)
  931. (let ((iswitchb-default-method 'display))
  932. (call-interactively 'iswitchb-buffer)))
  933. ;;;;;;;;;;;;;;;;;;;;;;;;
  934. ;; ilookup
  935. (with-eval-after-load 'ilookup
  936. (set-variable 'ilookup-dict-alist
  937. '(
  938. ("sdcv" . (lambda (word)
  939. (shell-command-to-string
  940. (format "sdcv -n '%s'"
  941. word))))
  942. ("en" . (lambda (word)
  943. (shell-command-to-string
  944. (format "sdcv -n -u dictd_www.dict.org_gcide '%s'"
  945. word))))
  946. ("ja" . (lambda (word)
  947. (shell-command-to-string
  948. (format "sdcv -n -u EJ-GENE95 -u jmdict-en-ja '%s'"
  949. word))))
  950. ("jaj" . (lambda (word)
  951. (shell-command-to-string
  952. (format "sdcv -n -u jmdict-en-ja '%s'"
  953. word))))
  954. ("jag" .
  955. (lambda (word)
  956. (with-temp-buffer
  957. (insert (shell-command-to-string
  958. (format "sdcv -n -u 'Genius English-Japanese' '%s'"
  959. word)))
  960. (html2text)
  961. (buffer-substring (point-min)
  962. (point-max)))))
  963. ("alc" . (lambda (word)
  964. (shell-command-to-string
  965. (format "alc '%s' | head -n 20"
  966. word))))
  967. ("app" . (lambda (word)
  968. (shell-command-to-string
  969. (format "dict_app '%s'"
  970. word))))
  971. ;; letters broken
  972. ("ms" .
  973. (lambda (word)
  974. (let ((url (concat
  975. "http://api.microsofttranslator.com/V2/Ajax.svc/"
  976. "Translate?appId=%s&text=%s&to=%s"))
  977. (apikey "3C9778666C5BA4B406FFCBEE64EF478963039C51")
  978. (target "ja")
  979. (eword (url-hexify-string word)))
  980. (with-current-buffer (url-retrieve-synchronously
  981. (format url
  982. apikey
  983. eword
  984. target))
  985. (message "")
  986. (goto-char (point-min))
  987. (search-forward-regexp "^$"
  988. nil
  989. t)
  990. (url-unhex-string (buffer-substring-no-properties
  991. (point)
  992. (point-max)))))))
  993. ))
  994. ;; (funcall (cdr (assoc "ms"
  995. ;; ilookup-alist))
  996. ;; "dictionary")
  997. ;; (switch-to-buffer (url-retrieve-synchronously "http://api.microsofttranslator.com/V2/Ajax.svc/Translate?appId=3C9778666C5BA4B406FFCBEE64EF478963039C51&text=dictionary&to=ja"))
  998. ;; (switch-to-buffer (url-retrieve-synchronously "http://google.com"))
  999. (set-variable 'ilookup-default "ja")
  1000. (when (locate-library "google-translate")
  1001. (defvar ilookup-dict-alist nil)
  1002. (add-to-list 'ilookup-dict-alist
  1003. '("gt" .
  1004. (lambda (word)
  1005. (save-excursion
  1006. (google-translate-translate "auto"
  1007. "ja"
  1008. word))
  1009. (with-current-buffer "*Google Translate*"
  1010. (buffer-substring-no-properties (point-min)
  1011. (point-max)))))))
  1012. )
  1013. (when (autoload-eval-lazily 'google-translate '(google-translate-translate
  1014. google-translate-at-point))
  1015. (set-variable 'google-translate-default-source-language "auto")
  1016. (set-variable 'google-translate-default-target-language "ja"))
  1017. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1018. ;; vc
  1019. (set-variable 'vc-handled-backends '())
  1020. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1021. ;; recentf-mode
  1022. (set-variable 'recentf-save-file (expand-file-name (concat user-emacs-directory
  1023. "recentf")))
  1024. (set-variable 'recentf-max-menu-items 20)
  1025. (set-variable 'recentf-max-saved-items 30)
  1026. (set-variable 'recentf-show-file-shortcuts-flag nil)
  1027. (when (safe-require-or-eval 'recentf)
  1028. (add-to-list 'recentf-exclude
  1029. (regexp-quote recentf-save-file))
  1030. (add-to-list 'recentf-exclude
  1031. (regexp-quote (expand-file-name user-emacs-directory)))
  1032. (define-key ctl-x-map (kbd "C-r") 'recentf-open-files)
  1033. (remove-hook 'find-file-hook
  1034. 'recentf-track-opened-file)
  1035. (defun my-recentf-load-track-save-list ()
  1036. "Load current recentf list from file, track current visiting file, then save
  1037. the list."
  1038. (recentf-load-list)
  1039. (recentf-track-opened-file)
  1040. (recentf-save-list))
  1041. (add-hook 'find-file-hook
  1042. 'my-recentf-load-track-save-list)
  1043. (add-hook 'kill-emacs-hook
  1044. 'recentf-load-list)
  1045. ;;(run-with-idle-timer 5 t 'recentf-save-list)
  1046. ;; (add-hook 'find-file-hook
  1047. ;; (lambda ()
  1048. ;; (recentf-add-file default-directory)))
  1049. (and (autoload-eval-lazily 'recentf-show)
  1050. (define-key ctl-x-map (kbd "C-r") 'recentf-show)
  1051. (add-hook 'recentf-show-before-listing-hook
  1052. 'recentf-load-list))
  1053. (recentf-mode 1)
  1054. (define-key recentf-dialog-mode-map (kbd "<up>") 'previous-line)
  1055. (define-key recentf-dialog-mode-map (kbd "<down>") 'next-line)
  1056. (define-key recentf-dialog-mode-map "p" 'previous-line)
  1057. (define-key recentf-dialog-mode-map "n" 'next-line)
  1058. (add-hook 'recentf-dialog-mode-hook
  1059. (lambda ()
  1060. ;; (recentf-save-list)
  1061. ;; (define-key recentf-dialog-mode-map (kbd "C-x C-f")
  1062. ;; 'my-recentf-cd-and-find-file)
  1063. (cd "~/"))))
  1064. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1065. ;; dired
  1066. (defun my-dired-echo-file-head (arg)
  1067. ""
  1068. (interactive "P")
  1069. (let ((f (dired-get-filename)))
  1070. (message "%s"
  1071. (with-temp-buffer
  1072. (insert-file-contents f)
  1073. (buffer-substring-no-properties
  1074. (point-min)
  1075. (progn (goto-char (point-min))
  1076. (forward-line (1- (if arg
  1077. (prefix-numeric-value arg)
  1078. 7)))
  1079. (point-at-eol)))))))
  1080. (defun my-dired-diff ()
  1081. ""
  1082. (interactive)
  1083. (let ((files (dired-get-marked-files nil nil nil t)))
  1084. (if (eq (car files)
  1085. t)
  1086. (diff (cadr files) (dired-get-filename))
  1087. (message "One file must be marked!"))))
  1088. (defun dired-get-file-info ()
  1089. "dired get file info"
  1090. (interactive)
  1091. (let ((f (shell-quote-argument (dired-get-filename t))))
  1092. (if (file-directory-p f)
  1093. (progn
  1094. (message "Calculating disk usage...")
  1095. (shell-command (concat "du -hsD "
  1096. f)))
  1097. (shell-command (concat "file "
  1098. f)))))
  1099. (defun my-dired-scroll-up ()
  1100. ""
  1101. (interactive)
  1102. (my-dired-previous-line (- (window-height) 1)))
  1103. (defun my-dired-scroll-down ()
  1104. ""
  1105. (interactive)
  1106. (my-dired-next-line (- (window-height) 1)))
  1107. ;; (defun my-dired-forward-line (arg)
  1108. ;; ""
  1109. ;; (interactive "p"))
  1110. (defun my-dired-previous-line (arg)
  1111. ""
  1112. (interactive "p")
  1113. (if (> arg 0)
  1114. (progn
  1115. (if (eq (line-number-at-pos)
  1116. 1)
  1117. (goto-char (point-max))
  1118. (forward-line -1))
  1119. (my-dired-previous-line (if (or (dired-get-filename nil t)
  1120. (dired-get-subdir))
  1121. (- arg 1)
  1122. arg)))
  1123. (dired-move-to-filename)))
  1124. (defun my-dired-next-line (arg)
  1125. ""
  1126. (interactive "p")
  1127. (if (> arg 0)
  1128. (progn
  1129. (if (eq (point)
  1130. (point-max))
  1131. (goto-char (point-min))
  1132. (forward-line 1))
  1133. (my-dired-next-line (if (or (dired-get-filename nil t)
  1134. (dired-get-subdir))
  1135. (- arg 1)
  1136. arg)))
  1137. (dired-move-to-filename)))
  1138. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  1139. (if (eq window-system 'mac)
  1140. (setq dired-listing-switches "-lhF")
  1141. (setq dired-listing-switches "-lhF --time-style=long-iso")
  1142. )
  1143. (setq dired-listing-switches "-lhF")
  1144. (put 'dired-find-alternate-file 'disabled nil)
  1145. ;; when using dired-find-alternate-file
  1146. ;; reuse current dired buffer for the file to open
  1147. (set-variable 'dired-ls-F-marks-symlinks t)
  1148. (with-eval-after-load 'ls-lisp
  1149. (setq ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  1150. (setq ls-lisp-dirs-first t)
  1151. (setq ls-lisp-use-localized-time-format t)
  1152. (setq ls-lisp-format-time-list
  1153. '("%Y-%m-%d %H:%M"
  1154. "%Y-%m-%d ")))
  1155. (set-variable 'dired-dwim-target t)
  1156. (set-variable 'dired-isearch-filenames t)
  1157. (set-variable 'dired-hide-details-hide-symlink-targets nil)
  1158. (set-variable 'dired-hide-details-hide-information-lines nil)
  1159. ;; (add-hook 'dired-after-readin-hook
  1160. ;; 'my-replace-nasi-none)
  1161. ;; (add-hook 'after-init-hook
  1162. ;; (lambda ()
  1163. ;; (dired ".")))
  1164. (with-eval-after-load 'dired
  1165. (safe-require-or-eval 'ls-lisp)
  1166. (defvar dired-mode-map (make-sparse-keymap))
  1167. (define-key dired-mode-map "o" 'my-dired-x-open)
  1168. (define-key dired-mode-map "i" 'dired-get-file-info)
  1169. (define-key dired-mode-map "f" 'find-file)
  1170. (define-key dired-mode-map "!" 'shell-command)
  1171. (define-key dired-mode-map "&" 'async-shell-command)
  1172. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1173. (define-key dired-mode-map "=" 'my-dired-diff)
  1174. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1175. (define-key dired-mode-map "b" 'gtkbm)
  1176. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  1177. (define-key dired-mode-map "@" (lambda ()
  1178. (interactive) (my-x-open ".")))
  1179. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1180. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  1181. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  1182. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  1183. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  1184. (substitute-key-definition 'dired-next-line
  1185. 'my-dired-next-line
  1186. dired-mode-map)
  1187. (substitute-key-definition 'dired-previous-line
  1188. 'my-dired-previous-line
  1189. dired-mode-map)
  1190. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  1191. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  1192. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  1193. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  1194. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1195. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1196. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  1197. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  1198. (add-hook 'dired-mode-hook
  1199. (lambda ()
  1200. (when (fboundp 'dired-hide-details-mode)
  1201. (dired-hide-details-mode t)
  1202. (local-set-key "l" 'dired-hide-details-mode))
  1203. (let ((file "._Icon\015"))
  1204. (when nil
  1205. '(file-readable-p file)
  1206. (delete-file file)))))
  1207. (when (autoload-eval-lazily 'pack '(dired-do-pack-or-unpack pack-pack))
  1208. (with-eval-after-load 'dired
  1209. (define-key dired-mode-map "P" 'dired-do-pack-or-unpack)))
  1210. (when (autoload-eval-lazily 'dired-list-all-mode)
  1211. (setq dired-listing-switches "-lhF")
  1212. (with-eval-after-load 'dired
  1213. (define-key dired-mode-map "a" 'dired-list-all-mode))))
  1214. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1215. ;; misc funcs
  1216. (defalias 'qcalc 'quick-calc)
  1217. (defun memo (&optional dir)
  1218. "Open memo.txt in DIR."
  1219. (interactive)
  1220. (pop-to-buffer (find-file-noselect (concat (if dir
  1221. (file-name-as-directory dir)
  1222. "")
  1223. "memo.txt"))))
  1224. (defvar my-rgrep-alist
  1225. `(
  1226. ;; the silver searcher
  1227. ("ag"
  1228. (executable-find "ag")
  1229. "ag --nocolor --nogroup --nopager --filename ")
  1230. ;; ack
  1231. ("ack"
  1232. (executable-find "ack")
  1233. "ack --nocolor --nogroup --nopager --with-filename ")
  1234. ;; gnu global
  1235. ("global"
  1236. (and (require 'gtags nil t)
  1237. (executable-find "global")
  1238. (gtags-get-rootpath))
  1239. "global --result grep ")
  1240. ;; git grep
  1241. ("gitgrep"
  1242. (eq 0
  1243. (shell-command "git rev-parse --git-dir"))
  1244. "git --no-pager -c color.grep=false grep -nH -e ")
  1245. ;; grep
  1246. ("grep"
  1247. t
  1248. ,(concat "find . "
  1249. "-path '*/.git' -prune -o "
  1250. "-path '*/.svn' -prune -o "
  1251. "-type f -print0 | "
  1252. "xargs -0 grep -nH -e "))
  1253. )
  1254. "Alist of rgrep command.
  1255. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  1256. condition to choose COMMAND when evaluated.")
  1257. (defvar my-rgrep-default nil
  1258. "Default command name for my-rgrep.")
  1259. (defun my-rgrep-grep-command (&optional name alist)
  1260. "Return recursive grep command for current directory or nil.
  1261. If NAME is given, use that without testing.
  1262. Commands are searched from ALIST."
  1263. (if alist
  1264. (if name
  1265. ;; if name is given search that from alist and return the command
  1266. (nth 2 (assoc name
  1267. alist))
  1268. ;; if name is not given try test in 1th elem
  1269. (let ((car (car alist))
  1270. (cdr (cdr alist)))
  1271. (if (eval (nth 1 car))
  1272. ;; if the condition is true return the command
  1273. (nth 2 car)
  1274. ;; try next one
  1275. (and cdr
  1276. (my-rgrep-grep-command name cdr)))))
  1277. ;; if alist is not given set default value
  1278. (my-rgrep-grep-command name my-rgrep-alist)))
  1279. (defun my-rgrep (command-args)
  1280. "My recursive grep. Run COMMAND-ARGS."
  1281. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  1282. nil)))
  1283. (if cmd
  1284. (list (read-shell-command "grep command: "
  1285. cmd
  1286. 'grep-find-history))
  1287. (error "My-Rgrep: Command for rgrep not found")
  1288. )))
  1289. (compilation-start command-args
  1290. 'grep-mode))
  1291. ;; (defun my-rgrep-symbol-at-point (command-args)
  1292. ;; "My recursive grep. Run COMMAND-ARGS."
  1293. ;; (interactive (list (read-shell-command "grep command: "
  1294. ;; (concat (my-rgrep-grep-command)
  1295. ;; " "
  1296. ;; (thing-at-point 'symbol))
  1297. ;; 'grep-find-history)))
  1298. ;; (compilation-start command-args
  1299. ;; 'grep-mode))
  1300. (defmacro define-my-rgrep (name)
  1301. "Define rgrep for NAME."
  1302. `(defun ,(intern (concat "my-rgrep-"
  1303. name)) ()
  1304. ,(format "My recursive grep by %s."
  1305. name)
  1306. (interactive)
  1307. (let ((my-rgrep-default ,name))
  1308. (if (called-interactively-p 'any)
  1309. (call-interactively 'my-rgrep)
  1310. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  1311. )
  1312. (define-my-rgrep "ack")
  1313. (define-my-rgrep "ag")
  1314. (define-my-rgrep "gitgrep")
  1315. (define-my-rgrep "grep")
  1316. (define-my-rgrep "global")
  1317. (define-key ctl-x-map "s" 'my-rgrep)
  1318. ;; (defun make ()
  1319. ;; "Run \"make -k\" in current directory."
  1320. ;; (interactive)
  1321. ;; (compile "make -k"))
  1322. (defalias 'make 'compile)
  1323. (define-key ctl-x-map "c" 'compile)
  1324. ;;;;;;;;;;;;;;;;;;;;;;;
  1325. ;; adoc-simple-mode
  1326. (when (safe-require-or-eval 'adoc-mode)
  1327. (defvar adoc-simple-font-lock-keywords
  1328. nil)
  1329. (define-derived-mode adoc-simple-mode adoc-mode
  1330. "Adoc-Simple"
  1331. "Major mode for editing AsciiDoc text files.
  1332. This mode is a simplified version of `adoc-mode'."
  1333. '(set (make-local-variable 'font-lock-defaults)
  1334. '(adoc-simple-font-lock-keywords
  1335. nil nil nil nil
  1336. (font-lock-multiline . t)
  1337. (font-lock-mark-block-function . adoc-font-lock-mark-block-function))))
  1338. (add-to-list 'auto-mode-alist
  1339. '("\\.adoc\\'" . adoc-simple-mode)))
  1340. (when (and (safe-require-or-eval 'google-translate)
  1341. (safe-require-or-eval 'google-translate-smooth-ui))
  1342. (add-to-list 'google-translate-translation-directions-alist
  1343. '("en" . "ja"))
  1344. (defun translate-echo-at-point ()
  1345. "Translate popup at point."
  1346. (interactive)
  1347. (let ((google-translate-output-destination 'echo-area))
  1348. (google-translate-translate "auto" "ja" (current-word t t))))
  1349. (define-minor-mode auto-translate-mode
  1350. "Translate word at point automatically."
  1351. :global nil
  1352. :lighter "ATranslate"))
  1353. ;;; emacs.el ends here