Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

1705 linhas
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. xclip
  88. foreign-regexp
  89. multi-term
  90. term-run
  91. editorconfig
  92. git-ps1-mode
  93. restart-emacs
  94. fill-column-indicator
  95. pkgbuild-mode
  96. minibuffer-line
  97. which-key
  98. ;; I think this works in place of my autosave lib
  99. super-save
  100. pipenv
  101. imenu-list
  102. page-break-lines
  103. sync-recentf
  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. (setq garbage-collection-messages t)
  164. (when window-system
  165. (add-to-list 'default-frame-alist '(cursor-type . box))
  166. (add-to-list 'default-frame-alist '(background-color . "white"))
  167. (add-to-list 'default-frame-alist '(foreground-color . "gray10"))
  168. ;; (add-to-list 'default-frame-alist '(alpha . (80 100 100 100)))
  169. ;; does not work?
  170. )
  171. ;; (add-to-list 'default-frame-alist '(cursor-type . box))
  172. (if window-system (menu-bar-mode 1) (menu-bar-mode 0))
  173. (and (fboundp 'tool-bar-mode)
  174. (tool-bar-mode 0))
  175. (and (fboundp 'set-scroll-bar-mode)
  176. (set-scroll-bar-mode nil))
  177. (call-after-init
  178. (lambda ()
  179. (message "%s %s" invocation-name emacs-version)
  180. (message "Invocation directory: %s" default-directory)
  181. (message "%s was taken to initialize emacs." (emacs-init-time))
  182. (view-echo-area-messages)
  183. ;; (view-emacs-news)
  184. ))
  185. (cd ".") ; when using windows use / instead of \ in `default-directory'
  186. ;; locale
  187. (set-language-environment "Japanese")
  188. (set-default-coding-systems 'utf-8-unix)
  189. (prefer-coding-system 'utf-8-unix)
  190. (setq system-time-locale "C")
  191. ;; my prefix map
  192. (defvar my-prefix-map nil
  193. "My prefix map.")
  194. (define-prefix-command 'my-prefix-map)
  195. (define-key ctl-x-map (kbd "C-x") 'my-prefix-map)
  196. (define-key my-prefix-map (kbd "C-q") 'quoted-insert)
  197. (define-key my-prefix-map (kbd "C-z") 'suspend-frame)
  198. ;; (comint-show-maximum-output)
  199. ;; kill scratch
  200. (call-after-init (lambda ()
  201. (let ((buf (get-buffer "*scratch*")))
  202. (when buf
  203. (kill-buffer buf)))))
  204. ;; modifier keys
  205. ;; (setq mac-option-modifier 'control)
  206. ;; display
  207. (setq visible-bell t)
  208. (setq ring-bell-function 'ignore)
  209. (mouse-avoidance-mode 'banish)
  210. (setq echo-keystrokes 0.1)
  211. (defun reload-init-file ()
  212. "Reload Emacs init file."
  213. (interactive)
  214. (when (and user-init-file
  215. (file-readable-p user-init-file))
  216. (load-file user-init-file)))
  217. (safe-require-or-eval 'session)
  218. ;; server
  219. (set-variable 'server-name (concat "server"
  220. (number-to-string (emacs-pid))))
  221. ;; In Cygwin Environment `server-runnning-p' stops when server-use-tcp is nil
  222. ;; In Darwin environment, init fails with message like 'Service name too long'
  223. ;; when server-use-tcp is nil
  224. (when (or (eq system-type
  225. 'cygwin)
  226. (eq system-type
  227. 'darwin))
  228. (set-variable 'server-use-tcp t))
  229. ;; MSYS2 fix
  230. (when (eq system-type
  231. 'windows-nt)
  232. (setq shell-file-name
  233. (executable-find "bash"))
  234. '(setq function-key-map
  235. `(,@function-key-map ([pause] . [?\C-c])
  236. ))
  237. (define-key key-translation-map
  238. (kbd "<pause>")
  239. (kbd "C-c"))
  240. '(keyboard-translate [pause]
  241. (kbd "C-c")p)
  242. ;; TODO: move to other place later
  243. (when (not window-system)
  244. (setq interprogram-paste-function nil)
  245. (setq interprogram-cut-function nil)))
  246. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  247. ;; global keys
  248. (global-set-key (kbd "<up>") 'scroll-down-line)
  249. (global-set-key (kbd "<down>") 'scroll-up-line)
  250. (global-set-key (kbd "<left>") 'scroll-down)
  251. (global-set-key (kbd "<right>") 'scroll-up)
  252. ;; (define-key my-prefix-map (kbd "C-h") help-map)
  253. (global-set-key (kbd "C-\\") help-map)
  254. (define-key ctl-x-map (kbd "DEL") help-map)
  255. (define-key ctl-x-map (kbd "C-h") help-map)
  256. (define-key help-map "a" 'apropos)
  257. ;; disable annoying keys
  258. (global-set-key [prior] 'ignore)
  259. (global-set-key (kbd "<next>") 'ignore)
  260. (global-set-key [menu] 'ignore)
  261. (global-set-key [down-mouse-1] 'ignore)
  262. (global-set-key [down-mouse-2] 'ignore)
  263. (global-set-key [down-mouse-3] 'ignore)
  264. (global-set-key [mouse-1] 'ignore)
  265. (global-set-key [mouse-2] 'ignore)
  266. (global-set-key [mouse-3] 'ignore)
  267. (global-set-key (kbd "<eisu-toggle>") 'ignore)
  268. (global-set-key (kbd "C-<eisu-toggle>") 'ignore)
  269. (when (safe-require-or-eval 'which-key)
  270. (which-key-mode))
  271. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  272. ;; editting
  273. (setq kill-whole-line t)
  274. (setq scroll-conservatively 35
  275. scroll-margin 2
  276. scroll-step 0)
  277. (setq-default major-mode 'text-mode)
  278. (setq next-line-add-newlines nil)
  279. (setq kill-read-only-ok t)
  280. (setq truncate-partial-width-windows nil) ; when splitted horizontally
  281. ;; (setq-default line-spacing 0.2)
  282. (setq-default indicate-empty-lines t) ; when using x indicate empty line
  283. ;; (setq-default tab-width 4)
  284. (setq-default indent-tabs-mode nil)
  285. (setq-default indent-line-function 'indent-to-left-margin)
  286. ;; (setq-default indent-line-function nil)
  287. (setq-default truncate-lines nil)
  288. ;; (pc-selection-mode 1) ; make some already defined keybind back to default
  289. (delete-selection-mode 1)
  290. (cua-mode 0)
  291. (setq line-move-visual nil)
  292. ;; key bindings
  293. ;; moving around
  294. ;;(keyboard-translate ?\M-j ?\C-j)
  295. ;; (global-set-key (kbd "M-p") 'backward-paragraph)
  296. (define-key esc-map "p" 'backward-paragraph)
  297. ;; (global-set-key (kbd "M-n") 'forward-paragraph)
  298. (define-key esc-map "n" 'forward-paragraph)
  299. (global-set-key (kbd "C-<up>") 'scroll-down-line)
  300. (global-set-key (kbd "C-<down>") 'scroll-up-line)
  301. (global-set-key (kbd "C-<left>") 'scroll-down)
  302. (global-set-key (kbd "C-<right>") 'scroll-up)
  303. (global-set-key (kbd "<select>") 'ignore) ; 'previous-line-mark)
  304. (define-key ctl-x-map (kbd "ESC x") 'execute-extended-command)
  305. (define-key ctl-x-map (kbd "ESC :") 'eval-expression)
  306. ;; C-h and DEL
  307. (global-set-key (kbd "C-h") (kbd "DEL"))
  308. ;;(global-set-key (kbd "C-m") 'reindent-then-newline-and-indent)
  309. (global-set-key (kbd "C-m") 'newline-and-indent)
  310. ;; (global-set-key (kbd "C-o") (kbd "C-e C-m"))
  311. ;; (global-set-key "\C-z" 'undo) ; undo is M-u
  312. (define-key esc-map "u" 'undo)
  313. (define-key esc-map "i" (kbd "ESC TAB"))
  314. ;; (global-set-key (kbd "C-r") 'query-replace-regexp)
  315. (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  316. (global-set-key (kbd "C-r") 'isearch-backward-regexp)
  317. (define-key my-prefix-map (kbd "C-o") 'occur)
  318. (require 'page-ext nil t)
  319. (when (safe-require-or-eval 'page-break-lines)
  320. (global-page-break-lines-mode 1))
  321. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  322. ;; title and mode-line
  323. (when (safe-require-or-eval 'terminal-title)
  324. ;; if TERM is not screen use default value
  325. (if (getenv "TMUX")
  326. ;; if use tmux locally just basename of current dir
  327. (set-variable 'terminal-title-format
  328. '((file-name-nondirectory (directory-file-name
  329. default-directory))))
  330. (if (and (let ((tty-type (frame-parameter nil
  331. 'tty-type)))
  332. (and tty-type
  333. (equal (car (split-string tty-type
  334. "-"))
  335. "screen")))
  336. (not (getenv "SSH_CONNECTION")))
  337. (set-variable 'terminal-title-format
  338. '((file-name-nondirectory (directory-file-name
  339. default-directory))))
  340. ;; seems that TMUX is used locally and ssh to remote host
  341. (set-variable 'terminal-title-format
  342. `("em:"
  343. ,user-login-name
  344. "@"
  345. ,(car (split-string (system-name)
  346. "\\."))
  347. ":"
  348. default-directory))
  349. )
  350. )
  351. (terminal-title-mode))
  352. (setq eol-mnemonic-dos "\\r\\n")
  353. (setq eol-mnemonic-mac "\\r")
  354. (setq eol-mnemonic-unix "")
  355. (which-function-mode 0)
  356. (line-number-mode 0)
  357. (column-number-mode 0)
  358. (size-indication-mode 0)
  359. (setq mode-line-position
  360. '(:eval (format "L%%l/%d:C%%c"
  361. (count-lines (point-max)
  362. (point-min)))))
  363. ;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title
  364. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  365. ;; minibuffer
  366. (setq insert-default-directory t)
  367. (setq completion-ignore-case t
  368. read-file-name-completion-ignore-case t
  369. read-buffer-completion-ignore-case t)
  370. (setq resize-mini-windows t)
  371. (temp-buffer-resize-mode 1)
  372. (savehist-mode 1)
  373. (defvar display-time-format "%Y/%m/%d %a %H:%M")
  374. (set-variable 'help-at-pt-display-when-idle t)
  375. (fset 'yes-or-no-p 'y-or-n-p)
  376. ;; complete symbol when `eval'
  377. (define-key read-expression-map (kbd "TAB") 'completion-at-point)
  378. (define-key minibuffer-local-map (kbd "C-u")
  379. (lambda () (interactive) (delete-region (point-at-bol) (point))))
  380. ;; I dont know these bindings are good
  381. (define-key minibuffer-local-map (kbd "C-p") (kbd "ESC p"))
  382. (define-key minibuffer-local-map (kbd "C-n") (kbd "ESC n"))
  383. (when (safe-require-or-eval 'minibuffer-line)
  384. (set-face-underline 'minibuffer-line nil)
  385. (set-variable 'minibuffer-line-refresh-interval
  386. 25)
  387. ;; Set idle timer
  388. (defvar my-minibuffer-line--idle-timer nil)
  389. (defvar minibuffer-line-mode)
  390. (add-hook 'minibuffer-line-mode-hook
  391. (lambda ()
  392. (when my-minibuffer-line--idle-timer
  393. (cancel-timer my-minibuffer-line--idle-timer)
  394. (setq my-minibuffer-line--idle-timer nil))
  395. (when minibuffer-line-mode
  396. (setq my-minibuffer-line--idle-timer
  397. (run-with-idle-timer 0.5
  398. t
  399. 'minibuffer-line--update)))))
  400. (set-variable 'minibuffer-line-format
  401. `(,(concat user-login-name
  402. "@"
  403. (car (split-string (system-name)
  404. "\\."))
  405. ":")
  406. (:eval (abbreviate-file-name (or buffer-file-name
  407. default-directory)))
  408. (:eval (and (fboundp 'git-ps1-mode-get-current)
  409. (git-ps1-mode-get-current " [GIT:%s]")))
  410. " "
  411. (:eval (format-time-string display-time-format))))
  412. (minibuffer-line-mode 1)
  413. )
  414. (when (safe-require-or-eval 'prompt-text)
  415. (set-variable 'prompt-text-format
  416. `(,(concat ""
  417. user-login-name
  418. "@"
  419. (car (split-string (system-name)
  420. "\\."))
  421. ":")
  422. (:eval (abbreviate-file-name (or buffer-file-name
  423. default-directory)))
  424. (:eval (and (fboundp 'git-ps1-mode-get-current)
  425. (git-ps1-mode-get-current " [GIT:%s]")))
  426. " "
  427. (:eval (format-time-string display-time-format))
  428. "\n"
  429. (:eval (symbol-name this-command))
  430. ": "))
  431. (prompt-text-mode 1))
  432. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  433. ;; letters, font-lock mode and fonts
  434. ;; (set-face-background 'vertical-border (face-foreground 'mode-line))
  435. ;; (set-window-margins (selected-window) 1 1)
  436. (and (or (eq system-type 'Darwin)
  437. (eq system-type 'darwin))
  438. (fboundp 'mac-set-input-method-parameter)
  439. (mac-set-input-method-parameter 'japanese 'cursor-color "red")
  440. (mac-set-input-method-parameter 'roman 'cursor-color "black"))
  441. (when (and (boundp 'input-method-activate-hook) ; i dont know this is correct
  442. (boundp 'input-method-inactivate-hook))
  443. (add-hook 'input-method-activate-hook
  444. (lambda () (set-cursor-color "red")))
  445. (add-hook 'input-method-inactivate-hook
  446. (lambda () (set-cursor-color "black"))))
  447. (when (safe-require-or-eval 'paren)
  448. (show-paren-mode 1)
  449. (setq show-paren-delay 0.5
  450. show-paren-style 'parenthesis) ; mixed is hard to read
  451. ;; (set-face-background 'show-paren-match
  452. ;; "black")
  453. ;; ;; (face-foreground 'default))
  454. ;; (set-face-foreground 'show-paren-match
  455. ;; "white")
  456. ;; (set-face-inverse-video-p 'show-paren-match
  457. ;; t)
  458. )
  459. (transient-mark-mode 1)
  460. (global-font-lock-mode 1)
  461. (setq font-lock-global-modes
  462. '(not
  463. help-mode
  464. eshell-mode
  465. ;;term-mode
  466. Man-mode))
  467. ;; (standard-display-ascii ?\n "$\n")
  468. ;; (defvar my-eol-face
  469. ;; '(("\n" . (0 font-lock-comment-face t nil)))
  470. ;; )
  471. ;; (defvar my-tab-face
  472. ;; '(("\t" . '(0 highlight t nil))))
  473. (defvar my-jspace-face
  474. '(("\u3000" . '(0 highlight t nil))))
  475. (add-hook 'font-lock-mode-hook
  476. (lambda ()
  477. ;; (font-lock-add-keywords nil my-eol-face)
  478. (font-lock-add-keywords nil my-jspace-face)
  479. ))
  480. (when (safe-require-or-eval 'whitespace)
  481. (add-to-list 'whitespace-display-mappings
  482. ;; We need t since last one takes precedence
  483. `(tab-mark ?\t ,(vconcat "^I\t")) t)
  484. ;; (add-to-list 'whitespace-display-mappings
  485. ;; `(newline-mark ?\n ,(vconcat "$\n")))
  486. (setq whitespace-style '(face
  487. trailing ; trailing blanks
  488. newline ; newlines
  489. newline-mark ; use display table for newline
  490. tab-mark
  491. empty ; empty lines at beg or end of buffer
  492. lines-tail ; lines over 80
  493. ))
  494. ;; (setq whitespace-newline 'font-lock-comment-face)
  495. (set-variable 'whitespace-line-column nil)
  496. (global-whitespace-mode t)
  497. (add-hook 'dired-mode-hook
  498. (lambda ()
  499. (set (make-local-variable 'whitespace-style) nil)))
  500. (if (eq (display-color-cells)
  501. 256)
  502. (set-face-foreground 'whitespace-newline "color-109")
  503. ;; (progn
  504. ;; (set-face-bold-p 'whitespace-newline
  505. ;; t))
  506. ))
  507. (and nil
  508. '(safe-require-or-eval 'fill-column-indicator)
  509. (setq fill-column-indicator))
  510. ;; highlight current line
  511. ;; http://wiki.riywo.com/index.php?Meadow
  512. (face-spec-set 'hl-line
  513. '((((min-colors 256)
  514. (background dark))
  515. (:background "color-234"))
  516. (((min-colors 256)
  517. (background light))
  518. (:background "color-234"))
  519. (t
  520. (:underline "black"))))
  521. (set-variable 'hl-line-global-modes
  522. '(not
  523. term-mode))
  524. (global-hl-line-mode 1) ;; (hl-line-mode 1)
  525. (set-face-foreground 'font-lock-regexp-grouping-backslash "#666")
  526. (set-face-foreground 'font-lock-regexp-grouping-construct "#f60")
  527. ;;(safe-require-or-eval 'set-modeline-color)
  528. ;; (let ((fg (face-foreground 'default))
  529. ;; (bg (face-background 'default)))
  530. ;; (set-face-background 'mode-line-inactive
  531. ;; (if (face-inverse-video-p 'mode-line) fg bg))
  532. ;; (set-face-foreground 'mode-line-inactive
  533. ;; (if (face-inverse-video-p 'mode-line) bg fg)))
  534. ;; (set-face-underline 'mode-line-inactive
  535. ;; t)
  536. ;; (set-face-underline 'vertical-border
  537. ;; nil)
  538. (when (safe-require-or-eval 'end-mark)
  539. (global-end-mark-mode))
  540. (when (safe-require-or-eval 'auto-highlight-symbol)
  541. (set-variable 'ahs-idle-interval 0.6)
  542. (global-auto-highlight-symbol-mode 1))
  543. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  544. ;; file handling
  545. (when (safe-require-or-eval 'editorconfig)
  546. ;; (set-variable 'editorconfig-get-properties-function
  547. ;; 'editorconfig-core-get-properties-hash)
  548. (editorconfig-mode 1)
  549. (set-variable 'editorconfig-mode-lighter " EC")
  550. (with-eval-after-load 'org-src
  551. ;; [*.org\[\*Org Src*\[ c \]*\]]
  552. (add-hook 'org-src-mode-hook
  553. 'editorconfig-mode-apply t)))
  554. (when (fboundp 'editorconfig-custom-majormode)
  555. (add-hook 'editorconfig-custom-hooks
  556. 'editorconfig-custom-majormode))
  557. ;; Add readonly=true to set read-only-mode
  558. (add-hook 'editorconfig-custom-hooks
  559. (lambda (props)
  560. (let ((r (gethash 'readonly props)))
  561. (when (and (string= r "true")
  562. (not buffer-read-only))
  563. (read-only-mode 1)))))
  564. ;; (when (fboundp 'editorconfig-charset-extras)
  565. ;; (add-hook 'editorconfig-custom-hooks
  566. ;; 'editorconfig-charset-extras))
  567. (setq revert-without-query '(".+"))
  568. ;; save cursor position
  569. (when (safe-require-or-eval 'saveplace)
  570. (setq-default save-place t)
  571. (setq save-place-file (concat user-emacs-directory
  572. "places")))
  573. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  574. (setq make-backup-files t)
  575. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  576. (setq backup-directory-alist
  577. (cons (cons "\\.*$" (expand-file-name (concat user-emacs-directory
  578. "backup")))
  579. backup-directory-alist))
  580. (setq version-control 'never)
  581. (setq delete-old-versions t)
  582. (setq auto-save-list-file-prefix (expand-file-name (concat user-emacs-directory
  583. "auto-save/")))
  584. (setq delete-auto-save-files t)
  585. (add-to-list 'completion-ignored-extensions ".bak")
  586. (set-variable 'completion-cycle-threshold nil) ;; NEVER use
  587. (setq delete-by-moving-to-trash t)
  588. ;; trash-directory "~/.emacs.d/trash")
  589. (add-hook 'after-save-hook
  590. 'executable-make-buffer-file-executable-if-script-p)
  591. (set-variable 'bookmark-default-file
  592. (expand-file-name (concat user-emacs-directory
  593. "bmk")))
  594. (set-variable 'bookmark-save-flag
  595. 1)
  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. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  902. (with-eval-after-load 'uniquify
  903. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  904. (setq uniquify-ignore-buffers-re "*[^*]+*")
  905. (setq uniquify-min-dir-content 1))
  906. (with-eval-after-load 'view
  907. (defvar view-mode-map (make-sparse-keymap))
  908. (define-key view-mode-map "j" 'scroll-up-line)
  909. (define-key view-mode-map "k" 'scroll-down-line)
  910. (define-key view-mode-map "v" 'toggle-read-only)
  911. (define-key view-mode-map "q" 'bury-buffer)
  912. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  913. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  914. ;; (define-key view-mode-map
  915. ;; "n" 'nonincremental-repeat-search-forward)
  916. ;; (define-key view-mode-map
  917. ;; "N" 'nonincremental-repeat-search-backward)
  918. (define-key view-mode-map "/" 'isearch-forward-regexp)
  919. (define-key view-mode-map "?" 'isearch-backward-regexp)
  920. (define-key view-mode-map "n" 'isearch-repeat-forward)
  921. (define-key view-mode-map "N" 'isearch-repeat-backward)
  922. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point))
  923. (global-set-key "\M-r" 'view-mode)
  924. ;; (setq view-read-only t)
  925. (with-eval-after-load 'term
  926. (defvar term-raw-map (make-sparse-keymap))
  927. (define-key term-raw-map (kbd "C-x")
  928. (lookup-key (current-global-map)
  929. (kbd "C-x"))))
  930. (add-hook 'term-mode-hook
  931. (lambda ()
  932. ;; Stop current line highlighting
  933. (set (make-local-variable (defvar hl-line-range-function))
  934. (lambda () '(0 . 0)))
  935. (set (make-local-variable 'scroll-margin)
  936. 0)))
  937. (add-hook 'Man-mode-hook
  938. (lambda ()
  939. (view-mode 1)
  940. (setq truncate-lines nil)))
  941. (set-variable 'Man-notify-method (if window-system
  942. 'newframe
  943. 'aggressive))
  944. (set-variable 'woman-cache-filename (expand-file-name (concat user-emacs-directory
  945. "woman_cache.el")))
  946. ;; not work because man.el will be loaded when man called
  947. (defalias 'man 'woman)
  948. (add-to-list 'auto-mode-alist
  949. '("tox\\.ini\\'" . conf-unix-mode))
  950. (when (autoload-eval-lazily 'toml-mode)
  951. (add-to-list 'auto-mode-alist
  952. '("/Pipfile\\'" . toml-mode)))
  953. (when (autoload-eval-lazily 'json-mode)
  954. (add-to-list 'auto-mode-alist
  955. '("/Pipfile\\.lock\\'" . json-mode)))
  956. (add-hook 'go-mode-hook
  957. (lambda()
  958. (defvar go-mode-map)
  959. (add-hook 'before-save-hook' 'gofmt-before-save)
  960. (define-key go-mode-map (kbd "M-.") 'godef-jump)))
  961. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  962. ;; buffer switching
  963. (defvar bs-configurations)
  964. (when (autoload-eval-lazily 'bs '(bs-show)
  965. (add-to-list 'bs-configurations
  966. '("specials" "^\\*" nil ".*" nil nil))
  967. (add-to-list 'bs-configurations
  968. '("files-and-specials" "^\\*" buffer-file-name ".*" nil nil))
  969. (defvar bs-mode-map)
  970. (defvar bs-current-configuration)
  971. (define-key bs-mode-map (kbd "t")
  972. ;; TODO: fix toggle feature
  973. (lambda ()
  974. (interactive)
  975. (if (string= "specials"
  976. bs-current-configuration)
  977. (bs-set-configuration "files")
  978. (bs-set-configuration "specials"))
  979. (bs-refresh)
  980. (bs-message-without-log "%s"
  981. (bs--current-config-message))))
  982. ;; (setq bs-configurations (list
  983. ;; '("processes" nil get-buffer-process ".*" nil nil)
  984. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  985. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  986. )
  987. (defalias 'list-buffers 'bs-show)
  988. (set-variable 'bs-default-configuration "files-and-specials")
  989. (set-variable 'bs-default-sort-name "by nothing")
  990. (add-hook 'bs-mode-hook
  991. (lambda ()
  992. (set (make-local-variable 'scroll-margin) 0))))
  993. ;;(iswitchb-mode 1)
  994. (icomplete-mode)
  995. (defun iswitchb-buffer-display-other-window ()
  996. "Do iswitchb in other window."
  997. (interactive)
  998. (let ((iswitchb-default-method 'display))
  999. (call-interactively 'iswitchb-buffer)))
  1000. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1001. ;; vc
  1002. (set-variable 'vc-handled-backends '())
  1003. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1004. ;; recentf-mode
  1005. (set-variable 'recentf-save-file (expand-file-name (concat user-emacs-directory
  1006. "recentf")))
  1007. (set-variable 'recentf-max-menu-items 20)
  1008. (set-variable 'recentf-max-saved-items 30)
  1009. (set-variable 'recentf-show-file-shortcuts-flag nil)
  1010. (set-variable 'recentf-auto-cleanup 15)
  1011. (safe-require-or-eval 'sync-recentf)
  1012. (when (safe-require-or-eval 'recentf)
  1013. (add-to-list 'recentf-exclude
  1014. (regexp-quote recentf-save-file))
  1015. (add-to-list 'recentf-exclude
  1016. (regexp-quote (expand-file-name user-emacs-directory)))
  1017. (define-key ctl-x-map (kbd "C-r") 'recentf-open-files)
  1018. (remove-hook 'find-file-hook
  1019. 'recentf-track-opened-file)
  1020. (defun my-recentf-load-track-save-list ()
  1021. "Load current recentf list from file, track current visiting file, then save
  1022. the list."
  1023. (recentf-load-list)
  1024. (recentf-track-opened-file)
  1025. (recentf-save-list))
  1026. (add-hook 'find-file-hook
  1027. 'my-recentf-load-track-save-list)
  1028. (add-hook 'kill-emacs-hook
  1029. 'recentf-load-list)
  1030. ;;(run-with-idle-timer 5 t 'recentf-save-list)
  1031. ;; (add-hook 'find-file-hook
  1032. ;; (lambda ()
  1033. ;; (recentf-add-file default-directory)))
  1034. (and (autoload-eval-lazily 'recentf-show)
  1035. (define-key ctl-x-map (kbd "C-r") 'recentf-show)
  1036. (add-hook 'recentf-show-before-listing-hook
  1037. 'recentf-load-list))
  1038. (recentf-mode 1)
  1039. (define-key recentf-dialog-mode-map (kbd "<up>") 'previous-line)
  1040. (define-key recentf-dialog-mode-map (kbd "<down>") 'next-line)
  1041. (define-key recentf-dialog-mode-map "p" 'previous-line)
  1042. (define-key recentf-dialog-mode-map "n" 'next-line)
  1043. (add-hook 'recentf-dialog-mode-hook
  1044. (lambda ()
  1045. ;; (recentf-save-list)
  1046. ;; (define-key recentf-dialog-mode-map (kbd "C-x C-f")
  1047. ;; 'my-recentf-cd-and-find-file)
  1048. (cd "~/"))))
  1049. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1050. ;; dired
  1051. (defun my-dired-echo-file-head (arg)
  1052. "Echo head of current file.
  1053. ARG is num to show, or defaults to 7."
  1054. (interactive "P")
  1055. (let ((f (dired-get-filename)))
  1056. (message "%s"
  1057. (apply 'concat
  1058. (my-file-head f
  1059. 7)))))
  1060. (defun my-dired-diff ()
  1061. "Show diff of marked file and file of current line."
  1062. (interactive)
  1063. (let ((files (dired-get-marked-files nil nil nil t)))
  1064. (if (eq (car files)
  1065. t)
  1066. (diff (cadr files) (dired-get-filename))
  1067. (message "One file must be marked!"))))
  1068. (defun dired-get-file-info ()
  1069. "Print information of current line file."
  1070. (interactive)
  1071. (let ((f (shell-quote-argument (dired-get-filename t))))
  1072. (if (file-directory-p f)
  1073. (progn
  1074. (message "Calculating disk usage...")
  1075. (shell-command (concat "du -hsD "
  1076. f)))
  1077. (shell-command (concat "file "
  1078. f)))))
  1079. (defun my-dired-scroll-up ()
  1080. "Scroll up."
  1081. (interactive)
  1082. (my-dired-previous-line (- (window-height) 1)))
  1083. (defun my-dired-scroll-down ()
  1084. "Scroll down."
  1085. (interactive)
  1086. (my-dired-next-line (- (window-height) 1)))
  1087. ;; (defun my-dired-forward-line (arg)
  1088. ;; ""
  1089. ;; (interactive "p"))
  1090. (defun my-dired-previous-line (arg)
  1091. "Move ARG lines up."
  1092. (interactive "p")
  1093. (if (> arg 0)
  1094. (progn
  1095. (if (eq (line-number-at-pos)
  1096. 1)
  1097. (goto-char (point-max))
  1098. (forward-line -1))
  1099. (my-dired-previous-line (if (or (dired-get-filename nil t)
  1100. (dired-get-subdir))
  1101. (- arg 1)
  1102. arg)))
  1103. (dired-move-to-filename)))
  1104. (defun my-dired-next-line (arg)
  1105. "Move ARG lines down."
  1106. (interactive "p")
  1107. (if (> arg 0)
  1108. (progn
  1109. (if (eq (point)
  1110. (point-max))
  1111. (goto-char (point-min))
  1112. (forward-line 1))
  1113. (my-dired-next-line (if (or (dired-get-filename nil t)
  1114. (dired-get-subdir))
  1115. (- arg 1)
  1116. arg)))
  1117. (dired-move-to-filename)))
  1118. (defun my-dired-tramp-open (host)
  1119. "Open HOST home directory."
  1120. (interactive "sHostname: ")
  1121. (find-file (format "/scp:%s:" host)))
  1122. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  1123. (if (eq window-system 'mac)
  1124. (setq dired-listing-switches "-lhF")
  1125. (setq dired-listing-switches "-lhF --time-style=long-iso")
  1126. )
  1127. (setq dired-listing-switches "-lhF")
  1128. (put 'dired-find-alternate-file 'disabled nil)
  1129. ;; when using dired-find-alternate-file
  1130. ;; reuse current dired buffer for the file to open
  1131. (set-variable 'dired-ls-F-marks-symlinks t)
  1132. (set-variable 'ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  1133. (set-variable 'ls-lisp-dirs-first t)
  1134. (set-variable 'ls-lisp-use-localized-time-format t)
  1135. (set-variable 'ls-lisp-format-time-list
  1136. '("%Y-%m-%d %H:%M"
  1137. "%Y-%m-%d "))
  1138. (set-variable 'dired-dwim-target t)
  1139. (set-variable 'dired-isearch-filenames t)
  1140. (set-variable 'dired-hide-details-hide-symlink-targets nil)
  1141. (set-variable 'dired-hide-details-hide-information-lines nil)
  1142. (set-variable 'dired-deletion-confirmer 'y-or-n-p)
  1143. (set-variable 'dired-recursive-deletes 'always)
  1144. ;; (add-hook 'dired-after-readin-hook
  1145. ;; 'my-replace-nasi-none)
  1146. (with-eval-after-load 'dired
  1147. (safe-require-or-eval 'ls-lisp)
  1148. (defvar dired-mode-map (make-sparse-keymap))
  1149. (define-key dired-mode-map "i" 'dired-get-file-info)
  1150. (define-key dired-mode-map "f" 'find-file)
  1151. (define-key dired-mode-map "!" 'shell-command)
  1152. (define-key dired-mode-map "&" 'async-shell-command)
  1153. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1154. (define-key dired-mode-map "=" 'my-dired-diff)
  1155. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1156. (define-key dired-mode-map "b" 'gtkbm)
  1157. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  1158. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1159. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  1160. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  1161. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  1162. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  1163. (substitute-key-definition 'dired-next-line
  1164. 'my-dired-next-line
  1165. dired-mode-map)
  1166. (substitute-key-definition 'dired-previous-line
  1167. 'my-dired-previous-line
  1168. dired-mode-map)
  1169. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  1170. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  1171. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  1172. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  1173. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1174. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1175. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  1176. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  1177. (add-hook 'dired-mode-hook
  1178. (lambda ()
  1179. (when (fboundp 'dired-hide-details-mode)
  1180. (dired-hide-details-mode t)
  1181. (local-set-key "l" 'dired-hide-details-mode))
  1182. (let ((file "._Icon\015"))
  1183. (when nil
  1184. '(file-readable-p file)
  1185. (delete-file file)))))
  1186. (when (autoload-eval-lazily 'pack '(dired-do-pack-or-unpack pack-pack))
  1187. (with-eval-after-load 'dired
  1188. (define-key dired-mode-map "P" 'pack-dired-dwim)))
  1189. (when (autoload-eval-lazily 'dired-list-all-mode)
  1190. (setq dired-listing-switches "-lhF")
  1191. (with-eval-after-load 'dired
  1192. (define-key dired-mode-map "a" 'dired-list-all-mode))))
  1193. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1194. ;; misc funcs
  1195. (defalias 'qcalc 'quick-calc)
  1196. (defun memo (&optional dir)
  1197. "Open memo.txt in DIR."
  1198. (interactive)
  1199. (pop-to-buffer (find-file-noselect (concat (if dir
  1200. (file-name-as-directory dir)
  1201. "")
  1202. "memo.txt"))))
  1203. (set (defvar my-rgrep-alist nil
  1204. "Alist of rgrep command.
  1205. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  1206. condition to choose COMMAND when evaluated.")
  1207. `(
  1208. ;; ripgrep
  1209. ("rg"
  1210. (executable-find "rg")
  1211. "rg --no-heading --smart-case ")
  1212. ;; git grep
  1213. ("gitgrep"
  1214. (eq 0
  1215. (shell-command "git rev-parse --git-dir"))
  1216. "git --no-pager -c color.grep=always grep -nH -e ")
  1217. ;; sift
  1218. ("sift"
  1219. (executable-find "sift")
  1220. ("sift --binary-skip --filename --line-number --git --smart-case "))
  1221. ;; the silver searcher
  1222. ("ag"
  1223. (executable-find "ag")
  1224. "ag --nogroup --nopager --filename ")
  1225. ;; ack
  1226. ("ack"
  1227. (executable-find "ack")
  1228. "ack --nogroup --nopager --with-filename ")
  1229. ;; gnu global
  1230. ("global"
  1231. (and (require 'ggtags nil t)
  1232. (executable-find "global")
  1233. (ggtags-current-project-root))
  1234. "global --result grep ")
  1235. ;; grep
  1236. ("grep"
  1237. t
  1238. ,(concat "find . "
  1239. "-path '*/.git' -prune -o "
  1240. "-path '*/.svn' -prune -o "
  1241. "-type f -print0 | "
  1242. "xargs -0 grep -nH -e "))
  1243. )
  1244. )
  1245. (defvar my-rgrep-default nil
  1246. "Default command name for my-rgrep.")
  1247. (defun my-rgrep-grep-command (&optional name alist)
  1248. "Return recursive grep command for current directory or nil.
  1249. If NAME is given, use that without testing.
  1250. Commands are searched from ALIST."
  1251. (if alist
  1252. (if name
  1253. ;; if name is given search that from alist and return the command
  1254. (nth 2 (assoc name
  1255. alist))
  1256. ;; if name is not given try test in 1th elem
  1257. (let ((car (car alist))
  1258. (cdr (cdr alist)))
  1259. (if (eval (nth 1 car))
  1260. ;; if the condition is true return the command
  1261. (nth 2 car)
  1262. ;; try next one
  1263. (and cdr
  1264. (my-rgrep-grep-command name cdr)))))
  1265. ;; if alist is not given set default value
  1266. (my-rgrep-grep-command name my-rgrep-alist)))
  1267. (defun my-rgrep (command-args)
  1268. "My recursive grep. Run COMMAND-ARGS.
  1269. If prefix argument is given, use current symbol as default search target
  1270. and search from projectile root (if projectile is available)."
  1271. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  1272. nil)))
  1273. (if cmd
  1274. (list (read-shell-command "grep command: "
  1275. (concat cmd
  1276. (if current-prefix-arg
  1277. (thing-at-point 'symbol t)
  1278. ""))
  1279. 'grep-find-history))
  1280. (error "My-Rgrep: Command for rgrep not found")
  1281. )))
  1282. (if (and current-prefix-arg
  1283. (safe-require-or-eval 'projectile)
  1284. (projectile-project-p))
  1285. (projectile-with-default-dir (projectile-project-root)
  1286. (compilation-start command-args
  1287. 'grep-mode))
  1288. (compilation-start command-args
  1289. 'grep-mode)))
  1290. (defun my-rgrep-thing-at-point-projectile-root ()
  1291. "My recursive grep to find thing at point from project root."
  1292. (interactive)
  1293. (let* ((cmd (my-rgrep-grep-command my-rgrep-default
  1294. nil))
  1295. (command-args
  1296. (if cmd
  1297. (concat cmd
  1298. (or (thing-at-point 'symbol t)
  1299. (error "No symbol at point")))
  1300. (error "My-Rgrep: Command for rgrep not found"))))
  1301. (if (safe-require-or-eval 'projectile)
  1302. (projectile-with-default-dir (projectile-project-root)
  1303. (compilation-start command-args
  1304. 'grep-mode))
  1305. (compilation-start command-args
  1306. 'grep-mode))))
  1307. (defmacro define-my-rgrep (name)
  1308. "Define rgrep for NAME."
  1309. `(defun ,(intern (concat "my-rgrep-"
  1310. name)) ()
  1311. ,(format "My recursive grep by %s."
  1312. name)
  1313. (interactive)
  1314. (let ((my-rgrep-default ,name))
  1315. (if (called-interactively-p 'any)
  1316. (call-interactively 'my-rgrep)
  1317. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  1318. )
  1319. (define-my-rgrep "ack")
  1320. (define-my-rgrep "ag")
  1321. (define-my-rgrep "rg")
  1322. (define-my-rgrep "sift")
  1323. (define-my-rgrep "gitgrep")
  1324. (define-my-rgrep "grep")
  1325. (define-my-rgrep "global")
  1326. (define-key ctl-x-map "s" 'my-rgrep)
  1327. (define-key ctl-x-map "." 'my-rgrep-thing-at-point-projectile-root)
  1328. (defalias 'make 'compile)
  1329. (define-key ctl-x-map "c" 'compile)
  1330. ;;;;;;;;;;;;;;;;;;;;;;;
  1331. ;; adoc-simple-mode
  1332. (when (safe-require-or-eval 'adoc-mode)
  1333. (defvar adoc-simple-font-lock-keywords
  1334. nil)
  1335. (define-derived-mode adoc-simple-mode adoc-mode
  1336. "Adoc-Simple"
  1337. "Major mode for editing AsciiDoc text files.
  1338. This mode is a simplified version of `adoc-mode'."
  1339. '(set (make-local-variable 'font-lock-defaults)
  1340. '(adoc-simple-font-lock-keywords
  1341. nil nil nil nil
  1342. (font-lock-multiline . t)
  1343. (font-lock-mark-block-function . adoc-font-lock-mark-block-function))))
  1344. (add-to-list 'auto-mode-alist
  1345. '("\\.adoc\\'" . adoc-simple-mode)))
  1346. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1347. ;; awk-preview
  1348. (defgroup awk-preview nil
  1349. "Awk previewer."
  1350. :tag "Awk Preview"
  1351. :prefix "awk-preview-"
  1352. :group 'tools)
  1353. (defcustom awk-preview-program
  1354. (or (executable-find "gawk")
  1355. (executable-find "awk")
  1356. "awk")
  1357. "Awk program to execute."
  1358. :type 'string
  1359. :group 'awk-preview)
  1360. (defcustom awk-preview-switches
  1361. '("--sandbox" "--" "{print}")
  1362. "String of awk options appended when running awk preview."
  1363. :type '(repeat string)
  1364. :group 'awk-preview)
  1365. (defun awk-preview--invoke (start end output)
  1366. "Execute awk process and get result."
  1367. (let ((proc (apply 'start-process
  1368. "awk-preview"
  1369. output
  1370. awk-preview-program
  1371. awk-preview-switches)))
  1372. (message "%S" proc)
  1373. (process-send-region proc start end)
  1374. (process-send-eof proc)
  1375. (accept-process-output proc)
  1376. )
  1377. output)
  1378. (defun awk-preview (start end)
  1379. "Run awk and preview result."
  1380. (interactive "r")
  1381. (let ((output (with-current-buffer (get-buffer-create "*awk-preview output*")
  1382. (erase-buffer)
  1383. (current-buffer))))
  1384. (awk-preview--invoke start end output)
  1385. (message "awk-preview: %s" (with-current-buffer output
  1386. (buffer-substring-no-properties (point-min) (point-max))))
  1387. ))
  1388. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1389. ;; editorconfig-auto-apply
  1390. (define-minor-mode editorconfig-auto-apply-mode
  1391. "When saving .editorconfig file update buffer configs."
  1392. :global t
  1393. :lighter ""
  1394. (if editorconfig-auto-apply-mode
  1395. (add-hook 'after-save-hook
  1396. 'editorconfig-auto-apply-mode--when-save)
  1397. (remove-hook 'after-save-hook
  1398. 'editorconfig-auto-apply-mode--when-save)))
  1399. (defun editorconfig-auto-apply-mode--when-save ()
  1400. "When saving .editorconfig file walk all buffers and update configs."
  1401. (when (eq major-mode
  1402. 'editorconfig-conf-mode)
  1403. (let ((dir (file-name-directory buffer-file-name)))
  1404. (cl-dolist (buf (buffer-list))
  1405. (when (and (buffer-file-name buf)
  1406. (file-in-directory-p (buffer-file-name buf)
  1407. dir))
  1408. (with-current-buffer buf
  1409. (editorconfig-mode-apply)))))))
  1410. (editorconfig-auto-apply-mode 1)
  1411. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1412. (defun my-file-head (filename &optional n)
  1413. "Return list of first N lines of file FILENAME."
  1414. ;; Work with japanese text?
  1415. (let ((num (or n 10))
  1416. (size 100)
  1417. (beg 0)
  1418. (end 0)
  1419. (result '()))
  1420. (with-temp-buffer
  1421. (erase-buffer)
  1422. (while (<= (count-lines (point-min)
  1423. (point-max))
  1424. num)
  1425. (setq end (+ beg size))
  1426. (insert-file-contents-literally filename
  1427. nil
  1428. beg
  1429. end)
  1430. (goto-char (point-max))
  1431. (setq beg (+ beg size)))
  1432. (goto-char (point-min))
  1433. (while (< (length result) num)
  1434. (let ((start (point)))
  1435. (forward-line 1)
  1436. (setq result
  1437. `(,@result ,(buffer-substring-no-properties start
  1438. (point))))))
  1439. result
  1440. ;; (buffer-substring-no-properties (point-min)
  1441. ;; (progn
  1442. ;; (forward-line num)
  1443. ;; (point)))
  1444. )))
  1445. ;; (apply 'concat (my-file-head "./shrc" 10)
  1446. (set-variable 'dumb-jump-prefer-searcher 'rg)
  1447. ;; Local Variables:
  1448. ;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
  1449. ;; flycheck-checker: emacs-lisp
  1450. ;; End:
  1451. ;;; emancs.el ends here