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.
 
 
 
 
 
 

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