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.
 
 
 
 
 
 

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