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.
 
 
 
 
 
 

2056 lines
68 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. gosh-mode
  80. scala-mode
  81. ;;ensime
  82. color-moccur
  83. ggtags
  84. flycheck
  85. auto-highlight-symbol
  86. hl-todo
  87. ;; Currently not available
  88. ;; pp-c-l
  89. xclip
  90. foreign-regexp
  91. multi-term
  92. term-run
  93. editorconfig
  94. git-ps1-mode
  95. restart-emacs
  96. fill-column-indicator
  97. pkgbuild-mode
  98. minibuffer-line
  99. which-key
  100. ;; I think this works in place of my autosave lib
  101. super-save
  102. pipenv
  103. imenu-list
  104. page-break-lines
  105. aggressive-indent
  106. dired-filter
  107. wgrep
  108. magit
  109. git-gutter
  110. end-mark
  111. sl
  112. ;; TODO: Configure pony-tpl-mode
  113. pony-mode
  114. gited
  115. highlight-indentation
  116. diminish
  117. fzf
  118. editorconfig
  119. editorconfig-custom-majormode
  120. git-command
  121. prompt-text
  122. ;; 10sr repository
  123. ;; 10sr-extras
  124. terminal-title
  125. recentf-show
  126. dired-list-all-mode
  127. pack
  128. set-modeline-color
  129. read-only-only-mode
  130. smart-revert
  131. autosave
  132. ;;window-organizer
  133. ilookup
  134. pasteboard
  135. awk-preview
  136. recently
  137. ))
  138. (when (safe-require-or-eval 'package)
  139. (setq package-archives
  140. `(,@package-archives
  141. ("melpa" . "https://melpa.org/packages/")
  142. ;; Somehow fails to download via https
  143. ("10sr-el" . "http://10sr.github.io/emacs-lisp/elpa/")))
  144. (package-initialize)
  145. (defun my-auto-install-package ()
  146. "Install packages semi-automatically."
  147. (interactive)
  148. (package-refresh-contents)
  149. (mapc (lambda (pkg)
  150. (or (package-installed-p pkg)
  151. (package-install pkg)))
  152. 10sr-package-list))
  153. )
  154. ;; (lazy-load-eval 'sudoku)
  155. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  156. ;; my-idle-hook
  157. (defvar my-idle-hook nil
  158. "Hook run when idle for several secs.")
  159. (defvar my-idle-hook-sec 5
  160. "Second to run `my-idle-hook'.")
  161. (run-with-idle-timer my-idle-hook-sec
  162. t
  163. (lambda ()
  164. (run-hooks 'my-idle-hook)))
  165. ;; (add-hook 'my-idle-hook
  166. ;; (lambda ()
  167. ;; (message "idle hook message")))
  168. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  169. ;; start and quit
  170. (setq inhibit-startup-message t)
  171. (setq confirm-kill-emacs 'y-or-n-p)
  172. (setq gc-cons-threshold (* 1024 1024 16))
  173. (setq garbage-collection-messages nil)
  174. (when window-system
  175. (add-to-list 'default-frame-alist '(cursor-type . box))
  176. (add-to-list 'default-frame-alist '(background-color . "white"))
  177. (add-to-list 'default-frame-alist '(foreground-color . "gray10"))
  178. ;; (add-to-list 'default-frame-alist '(alpha . (80 100 100 100)))
  179. ;; does not work?
  180. )
  181. ;; (add-to-list 'default-frame-alist '(cursor-type . box))
  182. (menu-bar-mode 1)
  183. (define-key ctl-x-map "m" 'menu-bar-open)
  184. (and (fboundp 'tool-bar-mode)
  185. (tool-bar-mode 0))
  186. (and (fboundp 'set-scroll-bar-mode)
  187. (set-scroll-bar-mode nil))
  188. (call-after-init
  189. (lambda ()
  190. (message "%s %s" invocation-name emacs-version)
  191. (message "Invocation directory: %s" default-directory)
  192. (message "%s was taken to initialize emacs." (emacs-init-time))
  193. (view-echo-area-messages)
  194. ;; (view-emacs-news)
  195. ))
  196. (cd ".") ; when using windows use / instead of \ in `default-directory'
  197. ;; locale
  198. (set-language-environment "Japanese")
  199. (set-default-coding-systems 'utf-8-unix)
  200. (prefer-coding-system 'utf-8-unix)
  201. (setq system-time-locale "C")
  202. ;; my prefix map
  203. (defvar my-prefix-map nil
  204. "My prefix map.")
  205. (define-prefix-command 'my-prefix-map)
  206. ;; (define-key ctl-x-map (kbd "C-x") 'my-prefix-map)
  207. ;; (define-key my-prefix-map (kbd "C-q") 'quoted-insert)
  208. ;; (define-key my-prefix-map (kbd "C-z") 'suspend-frame)
  209. ;; (comint-show-maximum-output)
  210. ;; kill scratch
  211. (call-after-init (lambda ()
  212. (let ((buf (get-buffer "*scratch*")))
  213. (when buf
  214. (kill-buffer buf)))))
  215. ;; modifier keys
  216. ;; (setq mac-option-modifier 'control)
  217. ;; display
  218. (setq visible-bell t)
  219. (setq ring-bell-function 'ignore)
  220. (mouse-avoidance-mode 'banish)
  221. (setq echo-keystrokes 0.1)
  222. (defun reload-init-file ()
  223. "Reload Emacs init file."
  224. (interactive)
  225. (when (and user-init-file
  226. (file-readable-p user-init-file))
  227. (load-file user-init-file)))
  228. (safe-require-or-eval 'session)
  229. ;; server
  230. (set-variable 'server-name (concat "server"
  231. (number-to-string (emacs-pid))))
  232. ;; In Cygwin Environment `server-runnning-p' stops when server-use-tcp is nil
  233. ;; In Darwin environment, init fails with message like 'Service name too long'
  234. ;; when server-use-tcp is nil
  235. (when (or (eq system-type
  236. 'cygwin)
  237. (eq system-type
  238. 'darwin))
  239. (set-variable 'server-use-tcp t))
  240. ;; MSYS2 fix
  241. (when (eq system-type
  242. 'windows-nt)
  243. (setq shell-file-name
  244. (executable-find "bash"))
  245. '(setq function-key-map
  246. `(,@function-key-map ([pause] . [?\C-c])
  247. ))
  248. (define-key key-translation-map
  249. (kbd "<pause>")
  250. (kbd "C-c"))
  251. '(keyboard-translate [pause]
  252. (kbd "C-c")p)
  253. ;; TODO: move to other place later
  254. (when (not window-system)
  255. (setq interprogram-paste-function nil)
  256. (setq interprogram-cut-function nil)))
  257. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  258. ;; global keys
  259. (global-set-key (kbd "<up>") 'scroll-down-line)
  260. (global-set-key (kbd "<down>") 'scroll-up-line)
  261. (global-set-key (kbd "<left>") 'scroll-down)
  262. (global-set-key (kbd "<right>") 'scroll-up)
  263. ;; (define-key my-prefix-map (kbd "C-h") help-map)
  264. (global-set-key (kbd "C-\\") help-map)
  265. (define-key ctl-x-map (kbd "DEL") help-map)
  266. (define-key ctl-x-map (kbd "C-h") help-map)
  267. (define-key help-map "a" 'apropos)
  268. ;; disable annoying keys
  269. (global-set-key [prior] 'ignore)
  270. (global-set-key (kbd "<next>") 'ignore)
  271. (global-set-key [menu] 'ignore)
  272. (global-set-key [down-mouse-1] 'ignore)
  273. (global-set-key [down-mouse-2] 'ignore)
  274. (global-set-key [down-mouse-3] 'ignore)
  275. (global-set-key [mouse-1] 'ignore)
  276. (global-set-key [mouse-2] 'ignore)
  277. (global-set-key [mouse-3] 'ignore)
  278. (global-set-key (kbd "<eisu-toggle>") 'ignore)
  279. (global-set-key (kbd "C-<eisu-toggle>") 'ignore)
  280. (when (safe-require-or-eval 'which-key)
  281. (which-key-mode))
  282. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  283. ;; editor
  284. (setq kill-whole-line t)
  285. (setq scroll-conservatively 35
  286. scroll-margin 2)
  287. (setq-default major-mode 'text-mode)
  288. (setq next-line-add-newlines nil)
  289. (setq kill-read-only-ok t)
  290. (setq truncate-partial-width-windows nil) ; when splitted horizontally
  291. ;; (setq-default line-spacing 0.2)
  292. (setq-default indicate-empty-lines t) ; when using x indicate empty line
  293. ;; (setq-default tab-width 4)
  294. (setq-default indent-tabs-mode nil)
  295. (setq-default indent-line-function 'indent-to-left-margin)
  296. ;; (setq-default indent-line-function nil)
  297. (setq-default truncate-lines nil)
  298. ;; (pc-selection-mode 1) ; make some already defined keybind back to default
  299. (delete-selection-mode 1)
  300. (cua-mode 0)
  301. (setq line-move-visual nil)
  302. (setq create-lockfiles nil)
  303. (add-hook 'before-save-hook
  304. 'time-stamp)
  305. ;; Add Time-stamp: <> to insert timestamp there
  306. (set-variable 'time-stamp-format
  307. "%:y-%02m-%02d %02H:%02M:%02S %Z 10sr")
  308. ;; key bindings
  309. ;; moving around
  310. ;;(keyboard-translate ?\M-j ?\C-j)
  311. ;; (global-set-key (kbd "M-p") 'backward-paragraph)
  312. (define-key esc-map "p" 'backward-paragraph)
  313. ;; (global-set-key (kbd "M-n") 'forward-paragraph)
  314. (define-key esc-map "n" 'forward-paragraph)
  315. (global-set-key (kbd "C-<up>") 'scroll-down-line)
  316. (global-set-key (kbd "C-<down>") 'scroll-up-line)
  317. (global-set-key (kbd "C-<left>") 'scroll-down)
  318. (global-set-key (kbd "C-<right>") 'scroll-up)
  319. (global-set-key (kbd "<select>") 'ignore) ; 'previous-line-mark)
  320. (define-key ctl-x-map (kbd "ESC x") 'execute-extended-command)
  321. (define-key ctl-x-map (kbd "ESC :") 'eval-expression)
  322. ;; C-h and DEL
  323. (global-set-key (kbd "C-h") (kbd "DEL"))
  324. ;;(global-set-key (kbd "C-m") 'reindent-then-newline-and-indent)
  325. (global-set-key (kbd "C-m") 'newline-and-indent)
  326. ;; (global-set-key (kbd "C-o") (kbd "C-e C-m"))
  327. ;; (global-set-key "\C-z" 'undo) ; undo is M-u
  328. (define-key esc-map "u" 'undo)
  329. (define-key esc-map "i" (kbd "ESC TAB"))
  330. ;; (global-set-key (kbd "C-r") 'query-replace-regexp)
  331. (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  332. (global-set-key (kbd "C-r") 'isearch-backward-regexp)
  333. (require 'page-ext nil t)
  334. (when (safe-require-or-eval 'page-break-lines)
  335. (global-page-break-lines-mode 1))
  336. (when (safe-require-or-eval 'git-gutter)
  337. (custom-set-variables
  338. '(git-gutter:lighter " Gttr"))
  339. (custom-set-variables
  340. '(git-gutter:update-interval 2))
  341. (custom-set-variables
  342. '(git-gutter:unchanged-sign " "))
  343. (when (>= (display-color-cells)
  344. 256)
  345. (let ((c "color-233"))
  346. (set-face-background 'git-gutter:modified c)
  347. (set-face-background 'git-gutter:added c)
  348. (set-face-background 'git-gutter:deleted c)
  349. (set-face-background 'git-gutter:unchanged c)))
  350. (global-git-gutter-mode 1)
  351. )
  352. ;; (when (safe-require-or-eval 'fancy-narrow)
  353. ;; (fancy-narrow-mode 1))
  354. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  355. ;; title and mode-line
  356. (when (safe-require-or-eval 'terminal-title)
  357. ;; if TERM is not screen use default value
  358. (if (getenv "TMUX")
  359. ;; if use tmux locally just basename of current dir
  360. (set-variable 'terminal-title-format
  361. '((file-name-nondirectory (directory-file-name
  362. default-directory))))
  363. (if (and (let ((tty-type (frame-parameter nil
  364. 'tty-type)))
  365. (and tty-type
  366. (equal (car (split-string tty-type
  367. "-"))
  368. "screen")))
  369. (not (getenv "SSH_CONNECTION")))
  370. (set-variable 'terminal-title-format
  371. '((file-name-nondirectory (directory-file-name
  372. default-directory))))
  373. ;; seems that TMUX is used locally and ssh to remote host
  374. (set-variable 'terminal-title-format
  375. `("em:"
  376. ,user-login-name
  377. "@"
  378. ,(car (split-string (system-name)
  379. "\\."))
  380. ":"
  381. default-directory))
  382. )
  383. )
  384. (terminal-title-mode))
  385. (setq eol-mnemonic-dos "\\r\\n")
  386. (setq eol-mnemonic-mac "\\r")
  387. (setq eol-mnemonic-unix "")
  388. (which-function-mode 1)
  389. (line-number-mode 0)
  390. (column-number-mode 0)
  391. (size-indication-mode 0)
  392. (setq mode-line-position
  393. '(:eval (format "L%%l/%d%s:C%%c"
  394. (count-lines (point-max)
  395. (point-min))
  396. (if (buffer-narrowed-p)
  397. "[N]"
  398. "")
  399. )))
  400. (when (safe-require-or-eval 'diminish)
  401. ;; FIXME: Eval after enabling mode
  402. (diminish 'recently-mode)
  403. (diminish 'editorconfig-mode)
  404. (diminish 'auto-highlight-symbol-mode)
  405. (diminish 'global-whitespace-mode)
  406. (diminish 'which-key-mode)
  407. (diminish 'page-break-lines-mode)
  408. (diminish 'highlight-indentation-mode))
  409. ;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title
  410. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  411. ;; minibuffer
  412. (setq insert-default-directory t)
  413. (setq completion-ignore-case t
  414. read-file-name-completion-ignore-case t
  415. read-buffer-completion-ignore-case t)
  416. (setq resize-mini-windows t)
  417. (temp-buffer-resize-mode 1)
  418. (savehist-mode 1)
  419. (defvar display-time-format "%Y/%m/%d %a %H:%M")
  420. (set-variable 'help-at-pt-display-when-idle t)
  421. (fset 'yes-or-no-p 'y-or-n-p)
  422. ;; complete symbol when `eval'
  423. (define-key read-expression-map (kbd "TAB") 'completion-at-point)
  424. (define-key minibuffer-local-map (kbd "C-u")
  425. (lambda () (interactive) (delete-region (point-at-bol) (point))))
  426. ;; I dont know these bindings are good
  427. (define-key minibuffer-local-map (kbd "C-p") (kbd "ESC p"))
  428. (define-key minibuffer-local-map (kbd "C-n") (kbd "ESC n"))
  429. (when (safe-require-or-eval 'minibuffer-line)
  430. (set-face-underline 'minibuffer-line nil)
  431. (set-variable 'minibuffer-line-refresh-interval
  432. 25)
  433. ;; Set idle timer
  434. (defvar my-minibuffer-line--idle-timer nil)
  435. (defvar minibuffer-line-mode)
  436. (add-hook 'minibuffer-line-mode-hook
  437. (lambda ()
  438. (when my-minibuffer-line--idle-timer
  439. (cancel-timer my-minibuffer-line--idle-timer)
  440. (setq my-minibuffer-line--idle-timer nil))
  441. (when minibuffer-line-mode
  442. (setq my-minibuffer-line--idle-timer
  443. (run-with-idle-timer 0.5
  444. t
  445. 'minibuffer-line--update)))))
  446. (set-variable 'minibuffer-line-format
  447. `(,(concat user-login-name
  448. "@"
  449. (car (split-string (system-name)
  450. "\\."))
  451. ":")
  452. (:eval (abbreviate-file-name (or buffer-file-name
  453. default-directory)))
  454. (:eval (and (fboundp 'git-ps1-mode-get-current)
  455. (git-ps1-mode-get-current " [GIT:%s]")))
  456. " "
  457. (:eval (format-time-string display-time-format))))
  458. (minibuffer-line-mode 1)
  459. )
  460. (when (safe-require-or-eval 'prompt-text)
  461. (set-variable 'prompt-text-format
  462. `(,(concat ""
  463. user-login-name
  464. "@"
  465. (car (split-string (system-name)
  466. "\\."))
  467. ":")
  468. (:eval (abbreviate-file-name (or buffer-file-name
  469. default-directory)))
  470. (:eval (and (fboundp 'git-ps1-mode-get-current)
  471. (git-ps1-mode-get-current " [GIT:%s]")))
  472. " "
  473. (:eval (format-time-string display-time-format))
  474. "\n"
  475. (:eval (symbol-name this-command))
  476. ": "))
  477. (prompt-text-mode 1))
  478. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  479. ;; letters, font-lock mode and fonts
  480. (setq text-quoting-style 'grave)
  481. ;; (set-face-background 'vertical-border (face-foreground 'mode-line))
  482. ;; (set-window-margins (selected-window) 1 1)
  483. (unless window-system
  484. (setq frame-background-mode 'dark))
  485. (and (or (eq system-type 'Darwin)
  486. (eq system-type 'darwin))
  487. (fboundp 'mac-set-input-method-parameter)
  488. (mac-set-input-method-parameter 'japanese 'cursor-color "red")
  489. (mac-set-input-method-parameter 'roman 'cursor-color "black"))
  490. (when (and (boundp 'input-method-activate-hook) ; i dont know this is correct
  491. (boundp 'input-method-inactivate-hook))
  492. (add-hook 'input-method-activate-hook
  493. (lambda () (set-cursor-color "red")))
  494. (add-hook 'input-method-inactivate-hook
  495. (lambda () (set-cursor-color "black"))))
  496. (when (safe-require-or-eval 'paren)
  497. (show-paren-mode 1)
  498. (setq show-paren-delay 0.5
  499. show-paren-style 'parenthesis) ; mixed is hard to read
  500. ;; (set-face-background 'show-paren-match
  501. ;; "black")
  502. ;; ;; (face-foreground 'default))
  503. ;; (set-face-foreground 'show-paren-match
  504. ;; "white")
  505. ;; (set-face-inverse-video-p 'show-paren-match
  506. ;; t)
  507. )
  508. (transient-mark-mode 1)
  509. (global-font-lock-mode 1)
  510. (setq font-lock-global-modes
  511. '(not
  512. help-mode
  513. eshell-mode
  514. ;;term-mode
  515. Man-mode
  516. magit-diff-mode
  517. magit-revision-mode))
  518. ;; (standard-display-ascii ?\n "$\n")
  519. ;; (defvar my-eol-face
  520. ;; '(("\n" . (0 font-lock-comment-face t nil)))
  521. ;; )
  522. ;; (defvar my-tab-face
  523. ;; '(("\t" . '(0 highlight t nil))))
  524. (defvar my-jspace-face
  525. '(("\u3000" . '(0 highlight t nil))))
  526. (add-hook 'font-lock-mode-hook
  527. (lambda ()
  528. ;; (font-lock-add-keywords nil my-eol-face)
  529. (font-lock-add-keywords nil my-jspace-face)
  530. ))
  531. (when (safe-require-or-eval 'whitespace)
  532. (add-to-list 'whitespace-display-mappings
  533. ;; We need t since last one takes precedence
  534. `(tab-mark ?\t ,(vconcat "|>\t")) t)
  535. ;; (add-to-list 'whitespace-display-mappings
  536. ;; `(newline-mark ?\n ,(vconcat "$\n")))
  537. (setq whitespace-style '(face
  538. trailing ; trailing blanks
  539. ;; tabs
  540. ;; spaces
  541. ;; lines
  542. lines-tail ; lines over 80
  543. newline ; newlines
  544. empty ; empty lines at beg or end of buffer
  545. ;; big-indent
  546. ;; space-mark
  547. tab-mark
  548. newline-mark ; use display table for newline
  549. ))
  550. ;; (setq whitespace-newline 'font-lock-comment-face)
  551. ;; (setq whitespace-style (delq 'newline-mark whitespace-style))
  552. (defun my-whitesspace-mode-reload ()
  553. "Reload whitespace-mode config."
  554. (interactive)
  555. (when whitespace-mode
  556. (whitespace-mode 0)
  557. (whitespace-mode 1)))
  558. (set-variable 'whitespace-line-column nil)
  559. (global-whitespace-mode t)
  560. (add-hook 'dired-mode-hook
  561. (lambda ()
  562. (set (make-local-variable 'whitespace-style) nil)))
  563. (if (>= (display-color-cells)
  564. 256)
  565. (set-face-foreground 'whitespace-newline "color-109")
  566. ;; (progn
  567. ;; (set-face-bold-p 'whitespace-newline
  568. ;; t))
  569. ))
  570. (and nil
  571. '(safe-require-or-eval 'fill-column-indicator)
  572. (setq fill-column-indicator))
  573. ;; highlight current line
  574. ;; http://wiki.riywo.com/index.php?Meadow
  575. (face-spec-set 'hl-line
  576. '((((min-colors 256)
  577. (background dark))
  578. (:background "color-234"))
  579. (((min-colors 256)
  580. (background light))
  581. (:background "color-234"))
  582. (t
  583. (:underline "black"))))
  584. (set-variable 'hl-line-global-modes
  585. '(not
  586. term-mode))
  587. (global-hl-line-mode 1) ;; (hl-line-mode 1)
  588. (set-face-foreground 'font-lock-regexp-grouping-backslash "#666")
  589. (set-face-foreground 'font-lock-regexp-grouping-construct "#f60")
  590. ;;(safe-require-or-eval 'set-modeline-color)
  591. ;; (let ((fg (face-foreground 'default))
  592. ;; (bg (face-background 'default)))
  593. ;; (set-face-background 'mode-line-inactive
  594. ;; (if (face-inverse-video-p 'mode-line) fg bg))
  595. ;; (set-face-foreground 'mode-line-inactive
  596. ;; (if (face-inverse-video-p 'mode-line) bg fg)))
  597. ;; (set-face-underline 'mode-line-inactive
  598. ;; t)
  599. ;; (set-face-underline 'vertical-border
  600. ;; nil)
  601. ;; (when (safe-require-or-eval 'end-mark)
  602. ;; (global-end-mark-mode))
  603. ;; M-x highlight-* to highlight things
  604. (global-hi-lock-mode 1)
  605. (unless (fboundp 'highlight-region-text)
  606. (defun highlight-region-text (beg end)
  607. "Highlight text between BEG and END."
  608. (interactive "r")
  609. (highlight-regexp (regexp-quote (buffer-substring-no-properties beg
  610. end)))
  611. (setq deactivate-mark t)))
  612. (when (safe-require-or-eval 'auto-highlight-symbol)
  613. (set-variable 'ahs-idle-interval 0.6)
  614. (global-auto-highlight-symbol-mode 1))
  615. (when (safe-require-or-eval 'highlight-indentation)
  616. (set-face-background 'highlight-indentation-face "color-236")
  617. (dolist (hook
  618. '(
  619. prog-mode-hook
  620. ))
  621. (add-hook hook
  622. 'highlight-indentation-mode)))
  623. ;; (set-face-background 'highlight-indentation-current-column-face "#c3b3b3")
  624. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  625. ;; file handling
  626. ;; fzf
  627. ;; Too slow in term buffer!
  628. ;; (set-variable 'fzf/executable "sk")
  629. ;; (set-variable 'fzf/args "--color bw --print-query")
  630. ;; Modified from hardcoded default to include:
  631. ;; - directories
  632. ;; - hidden files
  633. ;; - root directory (.)
  634. ;; - parent directory (..)
  635. ;; ripgrep cannot list directories...
  636. ;; (setenv "FZF_DEFAULT_COMMAND" "rg --files --hidden --follow --glob '!.git/*' --no-ignore")
  637. (let* ((find (if (executable-find "bfs")
  638. ;; Breadth-first find https://github.com/tavianator/bfs
  639. "bfs"
  640. ;; Use gfind if available?
  641. "find"))
  642. (findcmd (concat "set -eu; set -o pipefail; "
  643. "echo .; "
  644. "echo ..; "
  645. "command " find " -L . "
  646. "-mindepth 1 "
  647. "\\( -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune "
  648. "-o -print "
  649. "2> /dev/null "
  650. "| "
  651. "cut -b3-"))
  652. (fdcmd (concat "set -eu; set -o pipefail; "
  653. "echo .; "
  654. "echo ..; "
  655. "command fd "
  656. "--follow --hidden --no-ignore "
  657. "2>/dev/null")))
  658. (if (executable-find "fd")
  659. (setenv "FZF_DEFAULT_COMMAND" fdcmd)
  660. (setenv "FZF_DEFAULT_COMMAND" findcmd)))
  661. (set-variable 'fzf/window-height 45)
  662. (set-variable 'fzf/args "--print-query --ansi --inline-info --cycle")
  663. (defun my-fzf-or-find-file ()
  664. "Call fzf if usable or call find-file."
  665. (declare (interactive-only t))
  666. (interactive)
  667. (if (and (executable-find "fzf")
  668. (fboundp 'fzf)
  669. (not (file-remote-p default-directory)))
  670. (fzf)
  671. (call-interactively 'find-file)))
  672. (define-key ctl-x-map (kbd "f") 'my-fzf-or-find-file)
  673. ;; recently
  674. (when (safe-require-or-eval 'recently)
  675. (recently-mode 1))
  676. (when (safe-require-or-eval 'editorconfig)
  677. (set-variable 'editorconfig-get-properties-function
  678. 'editorconfig-core-get-properties-hash)
  679. (editorconfig-mode 1)
  680. (set-variable 'editorconfig-mode-lighter " EC")
  681. (when (fboundp 'ws-butler-mode)
  682. (set-variable 'editorconfig-trim-whitespaces-mode
  683. 'ws-butler-mode))
  684. (with-eval-after-load 'org-src
  685. ;; [*.org\[\*Org Src*\[ c \]*\]]
  686. (add-hook 'org-src-mode-hook
  687. 'editorconfig-mode-apply t)))
  688. (when (fboundp 'editorconfig-custom-majormode)
  689. (add-hook 'editorconfig-after-apply-functions
  690. 'editorconfig-custom-majormode))
  691. ;; Add readonly=true to set read-only-mode
  692. (add-hook 'editorconfig-after-apply-functions
  693. (lambda (props)
  694. (let ((r (gethash 'readonly props)))
  695. (when (and (string= r "true")
  696. (not buffer-read-only))
  697. (read-only-mode 1)))))
  698. (add-hook 'editorconfig-hack-properties-functions
  699. '(lambda (props)
  700. (when (derived-mode-p 'makefile-mode)
  701. (puthash 'indent_style "tab" props))))
  702. ;; (when (fboundp 'editorconfig-charset-extras)
  703. ;; (add-hook 'editorconfig-custom-hooks
  704. ;; 'editorconfig-charset-extras))
  705. (setq revert-without-query '(".+"))
  706. ;; save cursor position
  707. (when (safe-require-or-eval 'saveplace)
  708. (setq-default save-place t)
  709. (setq save-place-file (concat user-emacs-directory
  710. "places")))
  711. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  712. (setq make-backup-files t)
  713. (setq vc-make-backup-files t)
  714. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  715. (setq backup-directory-alist
  716. (cons (cons "." (expand-file-name (concat user-emacs-directory
  717. "backup")))
  718. backup-directory-alist))
  719. (setq version-control 't)
  720. (setq delete-old-versions t)
  721. (setq kept-new-versions 20)
  722. (setq auto-save-list-file-prefix (expand-file-name (concat user-emacs-directory
  723. "auto-save/")))
  724. ;; (setq delete-auto-save-files t)
  725. (setq auto-save-visited-interval 8)
  726. (auto-save-visited-mode 1)
  727. (add-to-list 'completion-ignored-extensions ".bak")
  728. (set-variable 'completion-cycle-threshold nil) ;; NEVER use
  729. (setq delete-by-moving-to-trash t)
  730. ;; trash-directory "~/.emacs.d/trash")
  731. (add-hook 'after-save-hook
  732. 'executable-make-buffer-file-executable-if-script-p)
  733. (set-variable 'bookmark-default-file
  734. (expand-file-name (concat user-emacs-directory
  735. "bmk")))
  736. (set-variable 'bookmark-save-flag
  737. 1)
  738. (with-eval-after-load 'recentf
  739. (defvar recentf-exclude)
  740. (defvar bookmark-default-file)
  741. (add-to-list 'recentf-exclude
  742. (regexp-quote bookmark-default-file)))
  743. (when (safe-require-or-eval 'smart-revert)
  744. (smart-revert-on))
  745. ;; autosave
  746. ;; auto-save-visited-mode can be used instead?
  747. ;; (when (safe-require-or-eval 'autosave)
  748. ;; (autosave-set 8))
  749. ;; bookmarks
  750. ;; (define-key ctl-x-map "m" 'list-bookmarks)
  751. ;; vc
  752. (set-variable 'vc-handled-backends '(RCS))
  753. (set-variable 'vc-rcs-register-switches "-l")
  754. (set-variable 'vc-rcs-checkin-switches "-l")
  755. (set-variable 'vc-command-messages t)
  756. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  757. ;; share clipboard with x
  758. ;; this page describes this in details, but only these sexps seem to be needed
  759. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  760. (and nil
  761. (not window-system)
  762. (not (eq window-system 'mac))
  763. (getenv "DISPLAY")
  764. (not (equal (getenv "DISPLAY") ""))
  765. (executable-find "xclip")
  766. ;; (< emacs-major-version 24)
  767. '(safe-require-or-eval 'xclip)
  768. nil
  769. (turn-on-xclip))
  770. (and (eq system-type 'darwin)
  771. (safe-require-or-eval 'pasteboard)
  772. (turn-on-pasteboard))
  773. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  774. ;; some modes and hooks
  775. ;; Include some extra modes
  776. (require 'generic-x)
  777. (when (autoload-eval-lazily 'wgrep)
  778. (set-variable 'wgrep-auto-save-buffer t)
  779. (with-eval-after-load 'grep
  780. (defvar grep-mode-map)
  781. (define-key grep-mode-map
  782. "e"
  783. 'wgrep-change-to-wgrep-mode)))
  784. (with-eval-after-load 'remember
  785. (defvar remember-mode-map (make-sparse-keymap))
  786. (define-key remember-mode-map (kbd "C-x C-s") 'ignore))
  787. (with-eval-after-load 'magit-files
  788. ;; `global-magit-file-mode' is enabled by default and this mode overwrites
  789. ;; existing keybindings.
  790. ;; Apparently it is a HARMFUL behavior and it is really awful that I have
  791. ;; to disable thie mode here, but do anyway.
  792. ;; See also https://github.com/magit/magit/issues/3517
  793. (global-magit-file-mode -1))
  794. (with-eval-after-load 'magit-section
  795. (set-face-background 'magit-section-highlight
  796. nil))
  797. (with-eval-after-load 'magit-diff
  798. (set-face-background 'magit-diff-added-highlight
  799. nil)
  800. (set-face-background 'magit-diff-removed-highlight
  801. nil)
  802. (set-face-background 'magit-diff-context-highlight
  803. nil)
  804. )
  805. (when (boundp 'git-rebase-filename-regexp)
  806. (add-to-list 'auto-mode-alist
  807. `(,git-rebase-filename-regexp . text-mode)))
  808. (when (safe-require-or-eval 'aggressive-indent)
  809. (defvar aggressive-indent-excluded-modes)
  810. (setq aggressive-indent-excluded-modes
  811. `(diff-mode
  812. toml-mode
  813. conf-mode
  814. dockerfile-mode
  815. groovy-mode
  816. scala-mode
  817. ,@aggressive-indent-excluded-modes))
  818. (global-aggressive-indent-mode 1))
  819. (when (autoload-eval-lazily 'ggtags)
  820. (add-hook 'c-mode-common-hook
  821. (lambda ()
  822. (when (derived-mode-p 'c-mode 'c++-mode 'java-mode)
  823. (ggtags-mode 1))))
  824. (add-hook 'python-mode-hook
  825. (lambda ()
  826. (ggtags-mode 1))))
  827. (when (autoload-eval-lazily 'imenu-list)
  828. ;; (set-variable 'imenu-list-auto-resize t)
  829. (set-variable 'imenu-list-focus-after-activation t)
  830. (define-key ctl-x-map "l" 'imenu-list-smart-toggle))
  831. (add-hook 'emacs-lisp-mode-hook
  832. (lambda ()
  833. (setq imenu-generic-expression
  834. `(("Sections" ";;;\+\n;; \\(.*\\)\n" 1)
  835. ,@imenu-generic-expression))))
  836. (with-eval-after-load 'compile
  837. (defvar compilation-filter-start)
  838. (defvar compilation-error-regexp-alist)
  839. (require 'ansi-color)
  840. (add-hook 'compilation-filter-hook
  841. (lambda ()
  842. (let ((inhibit-read-only t))
  843. (ansi-color-apply-on-region compilation-filter-start
  844. (point)))))
  845. (add-to-list 'compilation-error-regexp-alist
  846. ;; ansible-lint
  847. '("^\\([^ \n]+\\):\\([0-9]+\\)$" 1 2)))
  848. ;; Workaround to avoid ensime error
  849. (defvar ensime-mode-key-prefix nil)
  850. (when (safe-require-or-eval 'company)
  851. ;; http://qiita.com/sune2/items/b73037f9e85962f5afb7
  852. ;; https://qiita.com/yuze/items/a145b1e3edb6d0c24cbf
  853. (global-company-mode)
  854. (set-variable 'company-idle-delay nil)
  855. (set-variable 'company-minimum-prefix-length 2)
  856. (set-variable 'company-selection-wrap-around t)
  857. (define-key ctl-x-map (kbd "C-i") 'company-complete) ; Originally `indent-rigidly'
  858. (defvar company-active-map)
  859. (define-key company-active-map (kbd "C-n") 'company-select-next)
  860. (define-key company-active-map (kbd "C-p") 'company-select-previous)
  861. (define-key company-active-map (kbd "C-s") 'company-filter-candidates)
  862. (define-key company-active-map (kbd "C-i") 'company-complete-selection)
  863. (define-key company-active-map (kbd "C-f") 'company-complete-selection)
  864. )
  865. ;; https://github.com/lunaryorn/flycheck
  866. (when (safe-require-or-eval 'flycheck)
  867. (call-after-init 'global-flycheck-mode))
  868. (when (autoload-eval-lazily 'ilookup)
  869. (define-key ctl-x-map "d" 'ilookup-open-word))
  870. (set-variable 'ac-ignore-case nil)
  871. (when (autoload-eval-lazily 'term-run '(term-run-shell-command term-run))
  872. (define-key ctl-x-map "t" 'term-run-shell-command))
  873. (add-to-list 'safe-local-variable-values
  874. '(encoding utf-8))
  875. (setq enable-local-variables :safe)
  876. ;; Detect file type from shebang and set major-mode.
  877. (add-to-list 'interpreter-mode-alist
  878. '("python3" . python-mode))
  879. (add-to-list 'interpreter-mode-alist
  880. '("python2" . python-mode))
  881. (with-eval-after-load 'python
  882. (defvar python-mode-map (make-sparse-keymap))
  883. (define-key python-mode-map (kbd "C-m") 'newline-and-indent))
  884. (when (autoload-eval-lazily 'pipenv)
  885. (add-hook 'python-mode-hook
  886. (lambda ()
  887. (pipenv-mode 1)
  888. (pipenv-projectile-after-switch-default)))
  889. )
  890. (set-variable 'flycheck-python-pycompile-executable "python3")
  891. (set-variable 'python-indent-guess-indent-offset nil)
  892. (with-eval-after-load 'blacken
  893. (when (require 'with-venv nil t)
  894. (with-venv-advice-add 'blacken-buffer)))
  895. ;; http://fukuyama.co/foreign-regexp
  896. '(and (safe-require-or-eval 'foreign-regexp)
  897. (progn
  898. (setq foreign-regexp/regexp-type 'perl)
  899. '(setq reb-re-syntax 'foreign-regexp)
  900. ))
  901. (autoload-eval-lazily 'sql '(sql-mode)
  902. (require 'sql-indent nil t))
  903. (add-to-list 'auto-mode-alist
  904. '("\\.hql\\'" . sql-mode))
  905. (when (autoload-eval-lazily 'git-command)
  906. (define-key ctl-x-map "g" 'git-command))
  907. (when (autoload-eval-lazily 'gited)
  908. (define-key ctl-x-map (kbd "C-g") 'gited-list))
  909. (when (safe-require-or-eval 'git-commit)
  910. (global-git-commit-mode 1))
  911. (with-eval-after-load 'git-commit
  912. (add-hook 'git-commit-setup-hook
  913. 'turn-off-auto-fill t))
  914. (autoload-eval-lazily 'sl)
  915. (with-eval-after-load 'rst
  916. (defvar rst-mode-map)
  917. (define-key rst-mode-map (kbd "C-m") 'newline-and-indent))
  918. (with-eval-after-load 'jdee
  919. (add-hook 'jdee-mode-hook
  920. (lambda ()
  921. (make-local-variable 'global-mode-string)
  922. (add-to-list 'global-mode-string
  923. mode-line-position))))
  924. ;; Cannot enable error thrown. Why???
  925. ;; https://github.com/m0smith/malabar-mode#Installation
  926. ;; (when (autoload-eval-lazily 'malabar-mode)
  927. ;; (add-to-list 'load-path
  928. ;; (expand-file-name (concat user-emacs-directory "/cedet")))
  929. ;; (safe-require-or-eval 'cedet-devel-load)
  930. ;; (call-after-init 'activate-malabar-mode))
  931. (with-eval-after-load 'make-mode
  932. (defvar makefile-mode-map (make-sparse-keymap))
  933. (define-key makefile-mode-map (kbd "C-m") 'newline-and-indent)
  934. ;; this functions is set in write-file-functions, i cannot find any
  935. ;; good way to remove this.
  936. (fset 'makefile-warn-suspicious-lines 'ignore))
  937. (with-eval-after-load 'verilog-mode
  938. (defvar verilog-mode-map (make-sparse-keymap))
  939. (define-key verilog-mode-map ";" 'self-insert-command))
  940. (setq diff-switches "-u")
  941. (with-eval-after-load 'diff-mode
  942. ;; (when (and (eq major-mode
  943. ;; 'diff-mode)
  944. ;; (not buffer-file-name))
  945. ;; ;; do not pass when major-mode is derived mode of diff-mode
  946. ;; (view-mode 1))
  947. (set-face-attribute 'diff-header nil
  948. :foreground nil
  949. :background nil
  950. :weight 'bold)
  951. (set-face-attribute 'diff-file-header nil
  952. :foreground nil
  953. :background nil
  954. :weight 'bold)
  955. (set-face-foreground 'diff-index "blue")
  956. (set-face-attribute 'diff-hunk-header nil
  957. :foreground "cyan"
  958. :weight 'normal)
  959. (set-face-attribute 'diff-context nil
  960. ;; :foreground "white"
  961. :foreground nil
  962. :weight 'normal)
  963. (set-face-foreground 'diff-removed "red")
  964. (set-face-foreground 'diff-added "green")
  965. (set-face-background 'diff-removed nil)
  966. (set-face-background 'diff-added nil)
  967. (set-face-attribute 'diff-changed nil
  968. :foreground "magenta"
  969. :weight 'normal)
  970. (set-face-attribute 'diff-refine-changed nil
  971. :foreground nil
  972. :background nil
  973. :weight 'bold
  974. :inverse-video t)
  975. ;; Annoying !
  976. ;;(diff-auto-refine-mode)
  977. )
  978. ;; (ffap-bindings)
  979. (set-variable 'browse-url-browser-function
  980. 'eww-browse-url)
  981. (set-variable 'sh-here-document-word "__EOC__")
  982. (when (autoload-eval-lazily 'adoc-mode
  983. nil
  984. (defvar adoc-mode-map (make-sparse-keymap))
  985. (define-key adoc-mode-map (kbd "C-m") 'newline))
  986. (setq auto-mode-alist
  987. `(("\\.adoc\\'" . adoc-mode)
  988. ("\\.asciidoc\\'" . adoc-mode)
  989. ,@auto-mode-alist)))
  990. (with-eval-after-load 'markup-faces
  991. ;; Is this too match ?
  992. (set-face-foreground 'markup-meta-face
  993. "color-245")
  994. (set-face-foreground 'markup-meta-hide-face
  995. "color-245")
  996. )
  997. ;; TODO: check if this is required
  998. (when (autoload-eval-lazily 'groovy-mode nil
  999. (defvar groovy-mode-map (make-sparse-keymap))
  1000. (define-key groovy-mode-map "(" 'self-insert-command)
  1001. (define-key groovy-mode-map ")" 'self-insert-command)
  1002. (define-key groovy-mode-map (kbd "C-m") 'newline-and-indent)
  1003. )
  1004. (add-to-list 'auto-mode-alist
  1005. '("build\\.gradle\\'" . groovy-mode)))
  1006. (add-to-list 'auto-mode-alist
  1007. '("\\.gawk\\'" . awk-mode))
  1008. (with-eval-after-load 'yaml-mode
  1009. (defvar yaml-mode-map (make-sparse-keymap))
  1010. (define-key yaml-mode-map (kbd "C-m") 'newline))
  1011. (with-eval-after-load 'html-mode
  1012. (defvar html-mode-map (make-sparse-keymap))
  1013. (define-key html-mode-map (kbd "C-m") 'reindent-then-newline-and-indent))
  1014. (with-eval-after-load 'text-mode
  1015. (define-key text-mode-map (kbd "C-m") 'newline))
  1016. (autoload-eval-lazily 'info nil
  1017. (defvar Info-additional-directory-list)
  1018. (dolist (dir (directory-files (concat user-emacs-directory
  1019. "info")
  1020. t
  1021. "^[^.].*"))
  1022. (when (file-directory-p dir)
  1023. (add-to-list 'Info-additional-directory-list
  1024. dir)))
  1025. (let ((dir (expand-file-name "~/.brew/share/info")))
  1026. (when (file-directory-p dir)
  1027. (add-to-list 'Info-additional-directory-list
  1028. dir))))
  1029. (with-eval-after-load 'apropos
  1030. (defvar apropos-mode-map (make-sparse-keymap))
  1031. (define-key apropos-mode-map "n" 'next-line)
  1032. (define-key apropos-mode-map "p" 'previous-line))
  1033. ;; `isearch' library does not call `provide' so cannot use with-eval-after-load
  1034. ;; (define-key isearch-mode-map
  1035. ;; (kbd "C-j") 'isearch-other-control-char)
  1036. ;; (define-key isearch-mode-map
  1037. ;; (kbd "C-k") 'isearch-other-control-char)
  1038. ;; (define-key isearch-mode-map
  1039. ;; (kbd "C-h") 'isearch-other-control-char)
  1040. (define-key isearch-mode-map (kbd "C-h") 'isearch-del-char)
  1041. (define-key isearch-mode-map (kbd "M-r")
  1042. 'isearch-query-replace-regexp)
  1043. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  1044. (setq lazy-highlight-cleanup nil)
  1045. ;; face for isearch highlighing
  1046. (set-face-attribute 'lazy-highlight
  1047. nil
  1048. :foreground `unspecified
  1049. :background `unspecified
  1050. :underline t
  1051. ;; :weight `bold
  1052. )
  1053. (add-hook 'outline-mode-hook
  1054. (lambda ()
  1055. (when (string-match "\\.md\\'" buffer-file-name)
  1056. (set (make-local-variable 'outline-regexp) "#+ "))))
  1057. (add-hook 'outline-mode-hook
  1058. 'outline-show-all)
  1059. (add-to-list 'auto-mode-alist (cons "\\.ol\\'" 'outline-mode))
  1060. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  1061. (when (autoload-eval-lazily 'markdown-mode
  1062. '(markdown-mode gfm-mode)
  1063. (defvar gfm-mode-map (make-sparse-keymap))
  1064. (define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline))
  1065. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
  1066. (set-variable 'markdown-command (or (executable-find "markdown")
  1067. (executable-find "markdown.pl")
  1068. ""))
  1069. (add-hook 'markdown-mode-hook
  1070. (lambda ()
  1071. (outline-minor-mode 1)
  1072. (flyspell-mode)
  1073. (set (make-local-variable 'comment-start) ";")))
  1074. )
  1075. ;; c-mode
  1076. ;; http://www.emacswiki.org/emacs/IndentingC
  1077. ;; http://en.wikipedia.org/wiki/Indent_style
  1078. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  1079. ;; http://seesaawiki.jp/whiteflare503/d/Emacs%20%a5%a4%a5%f3%a5%c7%a5%f3%a5%c8
  1080. (with-eval-after-load 'cc-vars
  1081. (defvar c-default-style nil)
  1082. (add-to-list 'c-default-style
  1083. '(c-mode . "k&r"))
  1084. (add-to-list 'c-default-style
  1085. '(c++-mode . "k&r")))
  1086. (autoload-eval-lazily 'js2-mode nil
  1087. ;; currently do not use js2-mode
  1088. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  1089. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  1090. ;; (defvar js2-mode-map (make-sparse-keymap))
  1091. ;; (define-key js2-mode-map (kbd "C-m") (lambda ()
  1092. ;; (interactive)
  1093. ;; (js2-enter-key)
  1094. ;; (indent-for-tab-command)))
  1095. ;; (add-hook (kill-local-variable 'before-save-hook)
  1096. ;; 'js2-before-save)
  1097. ;; (add-hook 'before-save-hook
  1098. ;; 'my-indent-buffer
  1099. ;; nil
  1100. ;; t)
  1101. )
  1102. (add-to-list 'interpreter-mode-alist
  1103. '("node" . js-mode))
  1104. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  1105. (with-eval-after-load 'uniquify
  1106. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  1107. (setq uniquify-ignore-buffers-re "*[^*]+*")
  1108. (setq uniquify-min-dir-content 1))
  1109. (with-eval-after-load 'view
  1110. (defvar view-mode-map (make-sparse-keymap))
  1111. (define-key view-mode-map "j" 'scroll-up-line)
  1112. (define-key view-mode-map "k" 'scroll-down-line)
  1113. (define-key view-mode-map "v" 'toggle-read-only)
  1114. (define-key view-mode-map "q" 'bury-buffer)
  1115. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  1116. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  1117. ;; (define-key view-mode-map
  1118. ;; "n" 'nonincremental-repeat-search-forward)
  1119. ;; (define-key view-mode-map
  1120. ;; "N" 'nonincremental-repeat-search-backward)
  1121. ;; N conflicts with git-walktree
  1122. ;; (define-key view-mode-map "/" 'isearch-forward-regexp)
  1123. ;; (define-key view-mode-map "?" 'isearch-backward-regexp)
  1124. ;; (define-key view-mode-map "n" 'isearch-repeat-forward)
  1125. ;; (define-key view-mode-map "N" 'isearch-repeat-backward)
  1126. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point))
  1127. (global-set-key "\M-r" 'view-mode)
  1128. ;; (setq view-read-only t)
  1129. (with-eval-after-load 'term
  1130. (defvar term-raw-map (make-sparse-keymap))
  1131. (define-key term-raw-map (kbd "C-x")
  1132. (lookup-key (current-global-map)
  1133. (kbd "C-x"))))
  1134. (add-hook 'term-mode-hook
  1135. (lambda ()
  1136. ;; Stop current line highlighting
  1137. (set (make-local-variable (defvar hl-line-range-function))
  1138. (lambda () '(0 . 0)))
  1139. (set (make-local-variable 'scroll-margin)
  1140. 0)
  1141. (set-variable 'term-buffer-maximum-size 20480)
  1142. ))
  1143. (add-hook 'Man-mode-hook
  1144. (lambda ()
  1145. (view-mode 1)
  1146. (setq truncate-lines nil)))
  1147. (set-variable 'Man-notify-method (if window-system
  1148. 'newframe
  1149. 'aggressive))
  1150. (set-variable 'woman-cache-filename (expand-file-name (concat user-emacs-directory
  1151. "woman_cache.el")))
  1152. ;; not work because man.el will be loaded when man called
  1153. (defalias 'man 'woman)
  1154. (add-to-list 'auto-mode-alist
  1155. '("tox\\.ini\\'" . conf-unix-mode))
  1156. (when (autoload-eval-lazily 'toml-mode)
  1157. (add-to-list 'auto-mode-alist
  1158. '("/tox\\.ini\\'" . toml-mode))
  1159. (add-to-list 'auto-mode-alist
  1160. '("/Pipfile\\'" . toml-mode))
  1161. (add-to-list 'auto-mode-alist
  1162. '("/poetry\\.lock\\'" . toml-mode))
  1163. )
  1164. (when (autoload-eval-lazily 'json-mode)
  1165. (add-to-list 'auto-mode-alist
  1166. '("/Pipfile\\.lock\\'" . json-mode)))
  1167. (add-hook 'go-mode-hook
  1168. (lambda()
  1169. (defvar go-mode-map)
  1170. (add-hook 'before-save-hook' 'gofmt-before-save nil t)
  1171. (define-key go-mode-map (kbd "M-.") 'godef-jump)))
  1172. (when (autoload-eval-lazily 'k8s-mode)
  1173. (add-to-list 'auto-mode-alist
  1174. '("\\.k8s\\'" . k8s-mode)))
  1175. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1176. ;; buffers
  1177. (defvar bs-configurations)
  1178. (when (autoload-eval-lazily 'bs '(bs-show)
  1179. (add-to-list 'bs-configurations
  1180. '("specials" "^\\*" nil ".*" nil nil))
  1181. (add-to-list 'bs-configurations
  1182. '("files-and-specials" "^\\*" buffer-file-name ".*" nil nil))
  1183. (defvar bs-mode-map)
  1184. (defvar bs-current-configuration)
  1185. (define-key bs-mode-map (kbd "t")
  1186. ;; TODO: fix toggle feature
  1187. (lambda ()
  1188. (interactive)
  1189. (if (string= "specials"
  1190. bs-current-configuration)
  1191. (bs-set-configuration "files")
  1192. (bs-set-configuration "specials"))
  1193. (bs-refresh)
  1194. (bs-message-without-log "%s"
  1195. (bs--current-config-message))))
  1196. ;; (setq bs-configurations (list
  1197. ;; '("processes" nil get-buffer-process ".*" nil nil)
  1198. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  1199. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  1200. )
  1201. (defalias 'list-buffers 'bs-show)
  1202. (set-variable 'bs-default-configuration "files-and-specials")
  1203. (set-variable 'bs-default-sort-name "by nothing")
  1204. (add-hook 'bs-mode-hook
  1205. (lambda ()
  1206. (set (make-local-variable 'scroll-margin) 0))))
  1207. ;;(iswitchb-mode 1)
  1208. (icomplete-mode)
  1209. (defun iswitchb-buffer-display-other-window ()
  1210. "Do iswitchb in other window."
  1211. (interactive)
  1212. (let ((iswitchb-default-method 'display))
  1213. (call-interactively 'iswitchb-buffer)))
  1214. ;; buffer killing
  1215. ;; (defun my-delete-window-killing-buffer () nil)
  1216. (defun my-query-kill-current-buffer ()
  1217. "Interactively kill current buffer."
  1218. (interactive)
  1219. (if (y-or-n-p (concat "kill current buffer? :"))
  1220. (kill-buffer (current-buffer))))
  1221. ;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
  1222. (substitute-key-definition 'kill-buffer
  1223. 'my-query-kill-current-buffer
  1224. global-map)
  1225. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1226. ;; recentf-mode
  1227. (set-variable 'recentf-save-file (expand-file-name (concat user-emacs-directory
  1228. "recentf")))
  1229. (set-variable 'recentf-max-menu-items 20)
  1230. (set-variable 'recentf-max-saved-items 30)
  1231. (set-variable 'recentf-show-file-shortcuts-flag nil)
  1232. (set-variable 'recentf-auto-cleanup 3)
  1233. ;; (safe-require-or-eval 'sync-recentf)
  1234. ;; (when (safe-require-or-eval 'recentf)
  1235. ;; (add-to-list 'recentf-exclude
  1236. ;; (regexp-quote recentf-save-file))
  1237. ;; (add-to-list 'recentf-exclude
  1238. ;; (regexp-quote (expand-file-name user-emacs-directory)))
  1239. ;; (add-to-list 'recentf-exclude
  1240. ;; "/sync-recentf-marker\\'")
  1241. ;; (define-key ctl-x-map (kbd "C-r") 'recentf-open-files)
  1242. ;; (remove-hook 'find-file-hook
  1243. ;; 'recentf-track-opened-file)
  1244. ;; (defun my-recentf-load-track-save-list ()
  1245. ;; "Load current recentf list from file, track current visiting file, then save
  1246. ;; the list."
  1247. ;; (recentf-load-list)
  1248. ;; (recentf-track-opened-file)
  1249. ;; (recentf-save-list))
  1250. ;; (add-hook 'find-file-hook
  1251. ;; 'my-recentf-load-track-save-list)
  1252. ;; (add-hook 'kill-emacs-hook
  1253. ;; 'recentf-load-list)
  1254. ;; ;;(run-with-idle-timer 5 t 'recentf-save-list)
  1255. ;; ;; (add-hook 'find-file-hook
  1256. ;; ;; (lambda ()
  1257. ;; ;; (recentf-add-file default-directory)))
  1258. ;; (when (autoload-eval-lazily 'recentf-show)
  1259. ;; (define-key ctl-x-map (kbd "C-r") 'recentf-show)
  1260. ;; ;; (add-hook 'recentf-show-before-listing-hook
  1261. ;; ;; 'recentf-load-list)
  1262. ;; )
  1263. ;; (recentf-mode 1)
  1264. ;; (define-key recentf-dialog-mode-map (kbd "<up>") 'previous-line)
  1265. ;; (define-key recentf-dialog-mode-map (kbd "<down>") 'next-line)
  1266. ;; (define-key recentf-dialog-mode-map "p" 'previous-line)
  1267. ;; (define-key recentf-dialog-mode-map "n" 'next-line)
  1268. ;; (add-hook 'recentf-dialog-mode-hook
  1269. ;; (lambda ()
  1270. ;; ;; (recentf-save-list)
  1271. ;; ;; (define-key recentf-dialog-mode-map (kbd "C-x C-f")
  1272. ;; ;; 'my-recentf-cd-and-find-file)
  1273. ;; (cd "~/"))))
  1274. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1275. ;; dired
  1276. (defun my-file-head (filename &optional n)
  1277. "Return list of first N lines of file FILENAME."
  1278. ;; TODO: Fix for janapese text
  1279. ;; TODO: Fix for short text
  1280. (let ((num (or n 10))
  1281. (size 100)
  1282. (beg 0)
  1283. (end 0)
  1284. (result '())
  1285. (read -1))
  1286. (with-temp-buffer
  1287. (erase-buffer)
  1288. (while (or (<= (count-lines (point-min)
  1289. (point-max))
  1290. num)
  1291. (eq read 0))
  1292. (setq end (+ beg size))
  1293. (setq read (nth 1 (insert-file-contents-literally filename
  1294. nil
  1295. beg
  1296. end)))
  1297. (goto-char (point-max))
  1298. (setq beg (+ beg size)))
  1299. (goto-char (point-min))
  1300. (while (< (length result) num)
  1301. (let ((start (point)))
  1302. (forward-line 1)
  1303. (setq result
  1304. `(,@result ,(buffer-substring-no-properties start
  1305. (point))))))
  1306. result
  1307. ;; (buffer-substring-no-properties (point-min)
  1308. ;; (progn
  1309. ;; (forward-line num)
  1310. ;; (point)))
  1311. )))
  1312. ;; (apply 'concat (my-file-head "./shrc" 10)
  1313. (defun my-dired-echo-file-head (arg)
  1314. "Echo head of current file.
  1315. ARG is num to show, or defaults to 7."
  1316. (interactive "P")
  1317. (let ((f (dired-get-filename)))
  1318. (message "%s"
  1319. (apply 'concat
  1320. (my-file-head f
  1321. 7)))))
  1322. (defun my-dired-diff ()
  1323. "Show diff of marked file and file of current line."
  1324. (interactive)
  1325. (let ((files (dired-get-marked-files nil nil nil t)))
  1326. (if (eq (car files)
  1327. t)
  1328. (diff (cadr files) (dired-get-filename))
  1329. (message "One file must be marked!"))))
  1330. (defun dired-get-file-info ()
  1331. "Print information of current line file."
  1332. (interactive)
  1333. (let ((f (shell-quote-argument (dired-get-filename t))))
  1334. (if (file-directory-p f)
  1335. (progn
  1336. (message "Calculating disk usage...")
  1337. (shell-command (concat "du -hsD "
  1338. f)))
  1339. (shell-command (concat "file "
  1340. f)))))
  1341. (defun my-dired-scroll-up ()
  1342. "Scroll up."
  1343. (interactive)
  1344. (my-dired-previous-line (- (window-height) 1)))
  1345. (defun my-dired-scroll-down ()
  1346. "Scroll down."
  1347. (interactive)
  1348. (my-dired-next-line (- (window-height) 1)))
  1349. ;; (defun my-dired-forward-line (arg)
  1350. ;; ""
  1351. ;; (interactive "p"))
  1352. (defun my-dired-previous-line (arg)
  1353. "Move ARG lines up."
  1354. (interactive "p")
  1355. (if (> arg 0)
  1356. (progn
  1357. (if (eq (line-number-at-pos)
  1358. 1)
  1359. (goto-char (point-max))
  1360. (forward-line -1))
  1361. (my-dired-previous-line (if (or (dired-get-filename nil t)
  1362. (dired-get-subdir))
  1363. (- arg 1)
  1364. arg)))
  1365. (dired-move-to-filename)))
  1366. (defun my-dired-next-line (arg)
  1367. "Move ARG lines down."
  1368. (interactive "p")
  1369. (if (> arg 0)
  1370. (progn
  1371. (if (eq (point)
  1372. (point-max))
  1373. (goto-char (point-min))
  1374. (forward-line 1))
  1375. (my-dired-next-line (if (or (dired-get-filename nil t)
  1376. (dired-get-subdir))
  1377. (- arg 1)
  1378. arg)))
  1379. (dired-move-to-filename)))
  1380. (defun my-tramp-remote-find-file (f)
  1381. "Open F."
  1382. (interactive (list (read-file-name "My Find File Tramp: "
  1383. "/scp:"
  1384. nil ;; "/scp:"
  1385. (confirm-nonexistent-file-or-buffer))))
  1386. (find-file f))
  1387. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  1388. (if (eq window-system 'mac)
  1389. (setq dired-listing-switches "-lhF")
  1390. (setq dired-listing-switches "-lhF --time-style=long-iso")
  1391. )
  1392. (setq dired-listing-switches "-lhF")
  1393. ;; when using dired-find-alternate-file
  1394. ;; reuse current dired buffer for the file to open
  1395. ;; (put 'dired-find-alternate-file 'disabled nil)
  1396. (set-variable 'dired-ls-F-marks-symlinks t)
  1397. (set-variable 'ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  1398. (set-variable 'ls-lisp-dirs-first t)
  1399. (set-variable 'ls-lisp-use-localized-time-format t)
  1400. (set-variable 'ls-lisp-format-time-list
  1401. '("%Y-%m-%d %H:%M"
  1402. "%Y-%m-%d "))
  1403. (set-variable 'dired-dwim-target t)
  1404. (set-variable 'dired-isearch-filenames t)
  1405. (set-variable 'dired-hide-details-hide-symlink-targets nil)
  1406. (set-variable 'dired-hide-details-hide-information-lines nil)
  1407. (set-variable 'dired-deletion-confirmer 'y-or-n-p)
  1408. (set-variable 'dired-recursive-deletes 'always)
  1409. ;; (add-hook 'dired-after-readin-hook
  1410. ;; 'my-replace-nasi-none)
  1411. (with-eval-after-load 'dired
  1412. (safe-require-or-eval 'ls-lisp)
  1413. (defvar dired-mode-map (make-sparse-keymap))
  1414. ;; dired-do-chgrp sometimes cause system hung
  1415. (define-key dired-mode-map "G" 'ignore)
  1416. (define-key dired-mode-map "e" 'wdired-change-to-wdired-mode)
  1417. (define-key dired-mode-map "i" 'dired-get-file-info)
  1418. ;; (define-key dired-mode-map "f" 'find-file)
  1419. (define-key dired-mode-map "f" 'my-fzf-or-find-file)
  1420. (define-key dired-mode-map "z" 'fzf)
  1421. (define-key dired-mode-map "!" 'shell-command)
  1422. (define-key dired-mode-map "&" 'async-shell-command)
  1423. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1424. (define-key dired-mode-map "=" 'my-dired-diff)
  1425. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1426. (define-key dired-mode-map "b" 'gtkbm)
  1427. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  1428. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1429. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  1430. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  1431. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  1432. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  1433. (substitute-key-definition 'dired-next-line
  1434. 'my-dired-next-line
  1435. dired-mode-map)
  1436. (substitute-key-definition 'dired-previous-line
  1437. 'my-dired-previous-line
  1438. dired-mode-map)
  1439. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  1440. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  1441. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  1442. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  1443. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1444. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1445. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  1446. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  1447. (add-hook 'dired-mode-hook
  1448. (lambda ()
  1449. (when (fboundp 'dired-hide-details-mode)
  1450. (dired-hide-details-mode t)
  1451. (local-set-key "l" 'dired-hide-details-mode))
  1452. (let ((file "._Icon\015"))
  1453. (when nil
  1454. '(file-readable-p file)
  1455. (delete-file file)))))
  1456. (when (autoload-eval-lazily 'pack '(dired-do-pack-or-unpack pack-pack)
  1457. (defvar pack-program-alist)
  1458. (add-to-list 'pack-program-alist
  1459. '("\\.txz\\'" :pack "tar -cJf" :unpack "tar -xf")))
  1460. (set-variable 'pack-silence
  1461. t)
  1462. (with-eval-after-load 'dired
  1463. (define-key dired-mode-map "P" 'pack-dired-dwim)))
  1464. (when (autoload-eval-lazily 'dired-list-all-mode)
  1465. (setq dired-listing-switches "-lhF")
  1466. (with-eval-after-load 'dired
  1467. (define-key dired-mode-map "a" 'dired-list-all-mode))))
  1468. (when (autoload-eval-lazily 'dired-filter)
  1469. (add-hook 'dired-mode-hook
  1470. 'dired-filter-mode))
  1471. (set-variable 'dired-filter-stack nil)
  1472. ;; Currently disabled in favor of dired-from-git-ls-files
  1473. ;; (define-key ctl-x-map "f" 'find-dired)
  1474. ;; It works!
  1475. ;; (pop-to-buffer (dired-noselect '("." "shrc" "emacs.el")))
  1476. (defun my-dired-git-ls-files (args)
  1477. "Dired from git ls-files."
  1478. (interactive "sgit ls-files args: ")
  1479. (pop-to-buffer-same-window
  1480. (dired-noselect `(,default-directory
  1481. ,@(split-string (shell-command-to-string (concat "git ls-files -z " args))
  1482. "\0" t))
  1483. ""))
  1484. )
  1485. (define-key ctl-x-map (kbd "G") 'my-dired-git-ls-files)
  1486. (with-eval-after-load 'dired
  1487. (defvar dired-mode-map (make-sparse-keymap))
  1488. (define-key dired-mode-map "G" 'my-dired-git-ls-files))
  1489. ;; (define-minor-mode my-dired-glob-filter)
  1490. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1491. ;; misc funcs
  1492. (when (fboundp 'browse-url-default-macosx-browser)
  1493. (defalias 'browse-osx 'browse-url-default-macosx-browser))
  1494. (defalias 'qcalc 'quick-calc)
  1495. (defun memo (&optional dir)
  1496. "Open memo.txt in DIR."
  1497. (interactive)
  1498. (pop-to-buffer (find-file-noselect (concat (if dir
  1499. (file-name-as-directory dir)
  1500. "")
  1501. "memo.txt"))))
  1502. (set (defvar my-rgrep-alist nil
  1503. "Alist of rgrep command.
  1504. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  1505. condition to choose COMMAND when evaluated.")
  1506. `(
  1507. ;; ripgrep
  1508. ("rg"
  1509. (executable-find "rg")
  1510. "rg -nH --no-heading --color=always --hidden --glob '!.git/' --smart-case -M 1280 ")
  1511. ;; git grep
  1512. ("gitgrep"
  1513. (eq 0
  1514. (shell-command "git rev-parse --git-dir"))
  1515. "git --no-pager -c color.grep=always grep -nH -e ")
  1516. ;; sift
  1517. ("sift"
  1518. (executable-find "sift")
  1519. ("sift --binary-skip --filename --line-number --git --smart-case "))
  1520. ;; the silver searcher
  1521. ("ag"
  1522. (executable-find "ag")
  1523. "ag --nogroup --nopager --filename ")
  1524. ;; ack
  1525. ("ack"
  1526. (executable-find "ack")
  1527. "ack --nogroup --nopager --with-filename ")
  1528. ;; gnu global
  1529. ("global"
  1530. (and (require 'ggtags nil t)
  1531. (executable-find "global")
  1532. (ggtags-current-project-root))
  1533. "global --result grep ")
  1534. ;; grep
  1535. ("grep"
  1536. t
  1537. ,(concat "find . "
  1538. "-path '*/.git' -prune -o "
  1539. "-path '*/.svn' -prune -o "
  1540. "-type f -print0 | "
  1541. "xargs -0 grep -nH -e "))
  1542. )
  1543. )
  1544. (defvar my-rgrep-default nil
  1545. "Default command name for my-rgrep.")
  1546. (defun my-rgrep-grep-command (&optional name alist)
  1547. "Return recursive grep command for current directory or nil.
  1548. If NAME is given, use that without testing.
  1549. Commands are searched from ALIST."
  1550. (if alist
  1551. (if name
  1552. ;; if name is given search that from alist and return the command
  1553. (nth 2 (assoc name
  1554. alist))
  1555. ;; if name is not given try test in 1th elem
  1556. (let ((car (car alist))
  1557. (cdr (cdr alist)))
  1558. (if (eval (nth 1 car))
  1559. ;; if the condition is true return the command
  1560. (nth 2 car)
  1561. ;; try next one
  1562. (and cdr
  1563. (my-rgrep-grep-command name cdr)))))
  1564. ;; if alist is not given set default value
  1565. (my-rgrep-grep-command name my-rgrep-alist)))
  1566. (defun my-rgrep (command-args)
  1567. "My recursive grep. Run COMMAND-ARGS.
  1568. If prefix argument is given, use current symbol as default search target
  1569. and search from projectile root (if projectile is available)."
  1570. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  1571. nil)))
  1572. (if cmd
  1573. (list (read-shell-command "grep command: "
  1574. (concat cmd
  1575. (if current-prefix-arg
  1576. (thing-at-point 'symbol t)
  1577. ""))
  1578. 'grep-find-history))
  1579. (error "My-Rgrep: Command for rgrep not found")
  1580. )))
  1581. (if (and current-prefix-arg
  1582. (safe-require-or-eval 'projectile)
  1583. (projectile-project-p))
  1584. (projectile-with-default-dir (projectile-project-root)
  1585. (compilation-start command-args
  1586. 'grep-mode))
  1587. (compilation-start command-args
  1588. 'grep-mode)))
  1589. (defun my-rgrep-thing-at-point-projectile-root ()
  1590. "My recursive grep to find thing at point from project root."
  1591. (interactive)
  1592. (let* ((cmd (my-rgrep-grep-command my-rgrep-default
  1593. nil))
  1594. (command-args
  1595. (if cmd
  1596. (concat cmd
  1597. (or (thing-at-point 'symbol t)
  1598. (error "No symbol at point")))
  1599. (error "My-Rgrep: Command for rgrep not found"))))
  1600. (if (safe-require-or-eval 'projectile)
  1601. (projectile-with-default-dir (or (projectile-project-root)
  1602. default-directory)
  1603. (compilation-start command-args
  1604. 'grep-mode))
  1605. (compilation-start command-args
  1606. 'grep-mode))))
  1607. (defmacro define-my-rgrep (name)
  1608. "Define rgrep for NAME."
  1609. `(defun ,(intern (concat "my-rgrep-"
  1610. name)) ()
  1611. ,(format "My recursive grep by %s."
  1612. name)
  1613. (interactive)
  1614. (let ((my-rgrep-default ,name))
  1615. (if (called-interactively-p 'any)
  1616. (call-interactively 'my-rgrep)
  1617. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  1618. )
  1619. (define-my-rgrep "ack")
  1620. (define-my-rgrep "ag")
  1621. (define-my-rgrep "rg")
  1622. (define-my-rgrep "sift")
  1623. (define-my-rgrep "gitgrep")
  1624. (define-my-rgrep "grep")
  1625. (define-my-rgrep "global")
  1626. (define-key ctl-x-map "s" 'my-rgrep)
  1627. (define-key ctl-x-map "." 'my-rgrep-thing-at-point-projectile-root)
  1628. (defun my-occur (regexp &optional region)
  1629. "My occur command to search REGEXP."
  1630. (interactive (list (read-string "List lines matching regexp: "
  1631. (thing-at-point 'symbol t))))
  1632. (occur regexp nil region))
  1633. (define-key ctl-x-map (kbd "C-o") 'my-occur)
  1634. (set-variable 'dumb-jump-prefer-searcher 'rg)
  1635. (defalias 'make 'compile)
  1636. (define-key ctl-x-map "c" 'compile)
  1637. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1638. ;; editorconfig-auto-apply
  1639. (define-minor-mode editorconfig-auto-apply-mode
  1640. "When saving .editorconfig file update buffer configs."
  1641. :global t ;; TODO: global nil and instruct to hook to editorconfig-conf-mode-hook
  1642. :lighter ""
  1643. (if editorconfig-auto-apply-mode
  1644. (add-hook 'after-save-hook
  1645. 'editorconfig-auto-apply-mode--run)
  1646. (remove-hook 'after-save-hook
  1647. 'editorconfig-auto-apply-mode--run)))
  1648. (defun editorconfig-auto-apply-mode--run ()
  1649. "When saving .editorconfig file walk all buffers and update configs."
  1650. (when (eq major-mode
  1651. 'editorconfig-conf-mode)
  1652. (let ((dir (file-name-directory buffer-file-name)))
  1653. (cl-dolist (buf (buffer-list))
  1654. (when (and (buffer-file-name buf)
  1655. (file-in-directory-p (buffer-file-name buf)
  1656. dir))
  1657. (with-current-buffer buf
  1658. (editorconfig-mode-apply)))))))
  1659. (editorconfig-auto-apply-mode 1)
  1660. (define-key ctl-x-map (kbd "C-r") 'recently-show)
  1661. (define-key ctl-x-map "T" 'git-worktree)
  1662. (define-key ctl-x-map "W" 'git-walktree)
  1663. ;;;;;;;;;;;;;;;;
  1664. ;; flychcek-black
  1665. (require 'flycheck)
  1666. (flycheck-define-checker python-black-check
  1667. "A Python style checker."
  1668. :command ("python3" "-m" "black"
  1669. "--check"
  1670. (config-file "--config" flycheck-black)
  1671. source)
  1672. :error-parser flycheck-parse-black-check
  1673. ;; :error-patterns
  1674. ;; (
  1675. ;; (error line-start "error: cannot format " (file-name) ": " (message) ": " line ":" column ": " (one-or-more any) line-end)
  1676. ;; (error line-start (message) " " (file-name) line-end)
  1677. ;; )
  1678. :enabled (lambda ()
  1679. (or (not (flycheck-python-needs-module-p 'python-black-check))
  1680. (flycheck-python-find-module 'python-black-check "black")))
  1681. :verify (lambda (_) (flycheck-python-verify-module 'python-black-check "black"))
  1682. :modes python-mode)
  1683. ;; (flycheck-define-checker python-black-diff
  1684. ;; "A Python style checker."
  1685. ;; :command ("python3"
  1686. ;; "-m" "black"
  1687. ;; (config-file "--config" flycheck-black)
  1688. ;; "--diff" source)
  1689. ;; :error-parser my-flycheck-parse-unified-diff
  1690. ;; :enabled (lambda ()
  1691. ;; (or (not (flycheck-python-needs-module-p 'python-black))
  1692. ;; (flycheck-python-find-module 'python-black "black")))
  1693. ;; :verify (lambda (_) (flycheck-python-verify-module 'python-black "black"))
  1694. ;; :modes python-mode)
  1695. (flycheck-def-config-file-var flycheck-black python-black-check "pyproject.toml"
  1696. :safe #'stringp)
  1697. (add-to-list 'flycheck-checkers
  1698. 'python-black-check)
  1699. (defun flycheck-parse-black-check (output checker buffer)
  1700. "Flycheck parser to check if reformat is required."
  1701. (let ((result nil))
  1702. (with-temp-buffer
  1703. (insert output)
  1704. (save-match-data
  1705. (goto-char (point-min))
  1706. (when (re-search-forward "^would reformat .*$" nil t)
  1707. (add-to-list 'result (flycheck-error-new-at
  1708. (point-min)
  1709. nil
  1710. 'error
  1711. ;;(format "Black: %s" (match-string 0))
  1712. "Black: would reformat"
  1713. :buffer buffer
  1714. :checker checker)))
  1715. (goto-char (point-min))
  1716. (when (re-search-forward "^error: .*$" nil t)
  1717. (add-to-list 'result (flycheck-error-new-at
  1718. (point-min)
  1719. nil
  1720. 'error
  1721. ;; Fix not to include absolute file path
  1722. (format "Black: %s" (match-string 0))
  1723. :buffer buffer
  1724. :checker checker)))))
  1725. result))
  1726. (defun my-flycheck-parse-unified-diff (output checker buffer)
  1727. "Flycheck parser to parse diff output."
  1728. (let ((source-line 0)
  1729. (result ())
  1730. (hunk "HUNK"))
  1731. (with-temp-buffer
  1732. (insert output)
  1733. (goto-char (point-min))
  1734. (while (not (eq (point) (point-max)))
  1735. ;; FIXME: Do not stop when no result
  1736. (while (not (re-search-forward "^@@ -\\([0-9]+\\),\\([0-9]+\\) \\+\\([0-9]+\\),\\([0-9]+\\) @@.*$" (point-at-eol) t))
  1737. (forward-line 1)
  1738. (goto-char (point-at-bol)))
  1739. (setq source-line
  1740. (string-to-number (match-string 1)))
  1741. ;; TODO: Add filename support
  1742. (setq hunk
  1743. (match-string 0))
  1744. ;;(while (not (rearch-forward "^\\(-\\|\\+\\)")))
  1745. )
  1746. (add-to-list 'result
  1747. (flycheck-error-new-at
  1748. 0
  1749. nil
  1750. 'error
  1751. "MESSAGE"
  1752. :buffer buffer
  1753. :checker checker
  1754. :group hunk)))
  1755. result))
  1756. (set-variable 'flycheck-python-mypy-ini
  1757. ".mypy.ini")
  1758. ;; Local Variables:
  1759. ;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
  1760. ;; flycheck-checker: emacs-lisp
  1761. ;; End:
  1762. ;;; emancs.el ends here