Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

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