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.
 
 
 
 
 
 

1708 lines
55 KiB

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