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.
 
 
 
 
 
 

2324 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. (defun my-set-flycheck-python-executables ()
  1119. "Set flycheck executables."
  1120. (when (require 'with-venv nil t)
  1121. (let ((venv (with-venv-find-venv-dir)))
  1122. (when venv
  1123. (let ((python (expand-file-name "bin/python"
  1124. venv)))
  1125. (set-variable 'flycheck-python-pylint-executable
  1126. python)
  1127. (set-variable 'flycheck-python-pycompile-executable
  1128. python)
  1129. (set-variable 'flycheck-python-black-check-executable
  1130. python)
  1131. (set-variable 'flycheck-python-mypy-executable
  1132. python)
  1133. (set-variable 'flycheck-python-flake8-executable
  1134. python)
  1135. (set-variable 'flycheck-python-pydocstyle-executable
  1136. python)
  1137. )))))
  1138. (add-hook 'python-mode-hook
  1139. 'my-set-flycheck-python-executables)
  1140. ;; http://fukuyama.co/foreign-regexp
  1141. '(and (safe-require-or-eval 'foreign-regexp)
  1142. (progn
  1143. (setq foreign-regexp/regexp-type 'perl)
  1144. '(setq reb-re-syntax 'foreign-regexp)
  1145. ))
  1146. (autoload-eval-lazily 'sql '(sql-mode)
  1147. (require 'sql-indent nil t))
  1148. (add-to-list 'auto-mode-alist
  1149. '("\\.hql\\'" . sql-mode))
  1150. (when (autoload-eval-lazily 'git-command)
  1151. (define-key ctl-x-map "g" 'git-command))
  1152. (when (autoload-eval-lazily 'gited)
  1153. (define-key ctl-x-map (kbd "C-g") 'gited-list))
  1154. (when (safe-require-or-eval 'git-commit)
  1155. (global-git-commit-mode 1))
  1156. (with-eval-after-load 'git-commit
  1157. (add-hook 'git-commit-setup-hook
  1158. 'turn-off-auto-fill t))
  1159. (autoload-eval-lazily 'sl)
  1160. (with-eval-after-load 'rst
  1161. (defvar rst-mode-map)
  1162. (define-key rst-mode-map (kbd "C-m") 'newline-and-indent))
  1163. (with-eval-after-load 'jdee
  1164. (add-hook 'jdee-mode-hook
  1165. (lambda ()
  1166. (make-local-variable 'global-mode-string)
  1167. (add-to-list 'global-mode-string
  1168. mode-line-position))))
  1169. ;; Cannot enable error thrown. Why???
  1170. ;; https://github.com/m0smith/malabar-mode#Installation
  1171. ;; (when (autoload-eval-lazily 'malabar-mode)
  1172. ;; (add-to-list 'load-path
  1173. ;; (expand-file-name (concat user-emacs-directory "/cedet")))
  1174. ;; (safe-require-or-eval 'cedet-devel-load)
  1175. ;; (call-after-init (activate-malabar-mode)))
  1176. (with-eval-after-load 'make-mode
  1177. (defvar makefile-mode-map (make-sparse-keymap))
  1178. (define-key makefile-mode-map (kbd "C-m") 'newline-and-indent)
  1179. ;; this functions is set in write-file-functions, i cannot find any
  1180. ;; good way to remove this.
  1181. (fset 'makefile-warn-suspicious-lines 'ignore))
  1182. (with-eval-after-load 'verilog-mode
  1183. (defvar verilog-mode-map (make-sparse-keymap))
  1184. (define-key verilog-mode-map ";" 'self-insert-command))
  1185. (setq diff-switches "-u")
  1186. (with-eval-after-load 'diff-mode
  1187. ;; (when (and (eq major-mode
  1188. ;; 'diff-mode)
  1189. ;; (not buffer-file-name))
  1190. ;; ;; do not pass when major-mode is derived mode of diff-mode
  1191. ;; (view-mode 1))
  1192. (set-face-attribute 'diff-header nil
  1193. :foreground nil
  1194. :background nil
  1195. :weight 'bold)
  1196. (set-face-attribute 'diff-file-header nil
  1197. :foreground nil
  1198. :background nil
  1199. :weight 'bold)
  1200. (set-face-foreground 'diff-index "blue")
  1201. (set-face-attribute 'diff-hunk-header nil
  1202. :foreground "cyan"
  1203. :weight 'normal)
  1204. (set-face-attribute 'diff-context nil
  1205. ;; :foreground "white"
  1206. :foreground nil
  1207. :weight 'normal)
  1208. (set-face-foreground 'diff-removed "red")
  1209. (set-face-foreground 'diff-added "green")
  1210. (set-face-background 'diff-removed nil)
  1211. (set-face-background 'diff-added nil)
  1212. (set-face-attribute 'diff-changed nil
  1213. :foreground "magenta"
  1214. :weight 'normal)
  1215. (set-face-attribute 'diff-refine-changed nil
  1216. :foreground nil
  1217. :background nil
  1218. :weight 'bold
  1219. :inverse-video t)
  1220. ;; Annoying !
  1221. ;;(diff-auto-refine-mode)
  1222. )
  1223. ;; (ffap-bindings)
  1224. (set-variable 'browse-url-browser-function
  1225. 'eww-browse-url)
  1226. (set-variable 'sh-here-document-word "__EOC__")
  1227. (when (autoload-eval-lazily 'adoc-mode
  1228. nil
  1229. (defvar adoc-mode-map (make-sparse-keymap))
  1230. (define-key adoc-mode-map (kbd "C-m") 'newline))
  1231. (setq auto-mode-alist
  1232. `(("\\.adoc\\'" . adoc-mode)
  1233. ("\\.asciidoc\\'" . adoc-mode)
  1234. ,@auto-mode-alist)))
  1235. (with-eval-after-load 'markup-faces
  1236. ;; Is this too match ?
  1237. (set-face-foreground 'markup-meta-face
  1238. "color-245")
  1239. (set-face-foreground 'markup-meta-hide-face
  1240. "color-245")
  1241. )
  1242. ;; TODO: check if this is required
  1243. (when (autoload-eval-lazily 'groovy-mode nil
  1244. (defvar groovy-mode-map (make-sparse-keymap))
  1245. (define-key groovy-mode-map "(" 'self-insert-command)
  1246. (define-key groovy-mode-map ")" 'self-insert-command)
  1247. (define-key groovy-mode-map (kbd "C-m") 'newline-and-indent)
  1248. )
  1249. (add-to-list 'auto-mode-alist
  1250. '("build\\.gradle\\'" . groovy-mode)))
  1251. (add-to-list 'auto-mode-alist
  1252. '("\\.gawk\\'" . awk-mode))
  1253. (with-eval-after-load 'yaml-mode
  1254. (defvar yaml-mode-map (make-sparse-keymap))
  1255. (define-key yaml-mode-map (kbd "C-m") 'newline))
  1256. (with-eval-after-load 'html-mode
  1257. (defvar html-mode-map (make-sparse-keymap))
  1258. (define-key html-mode-map (kbd "C-m") 'reindent-then-newline-and-indent))
  1259. (with-eval-after-load 'text-mode
  1260. (define-key text-mode-map (kbd "C-m") 'newline))
  1261. (autoload-eval-lazily 'info nil
  1262. (defvar Info-additional-directory-list)
  1263. (dolist (dir (directory-files (concat user-emacs-directory
  1264. "info")
  1265. t
  1266. "^[^.].*"))
  1267. (when (file-directory-p dir)
  1268. (add-to-list 'Info-additional-directory-list
  1269. dir)))
  1270. (let ((dir (expand-file-name "~/.brew/share/info")))
  1271. (when (file-directory-p dir)
  1272. (add-to-list 'Info-additional-directory-list
  1273. dir))))
  1274. (with-eval-after-load 'apropos
  1275. (defvar apropos-mode-map (make-sparse-keymap))
  1276. (define-key apropos-mode-map "n" 'next-line)
  1277. (define-key apropos-mode-map "p" 'previous-line))
  1278. ;; `isearch' library does not call `provide' so cannot use with-eval-after-load
  1279. ;; (define-key isearch-mode-map
  1280. ;; (kbd "C-j") 'isearch-other-control-char)
  1281. ;; (define-key isearch-mode-map
  1282. ;; (kbd "C-k") 'isearch-other-control-char)
  1283. ;; (define-key isearch-mode-map
  1284. ;; (kbd "C-h") 'isearch-other-control-char)
  1285. (define-key isearch-mode-map (kbd "C-h") 'isearch-del-char)
  1286. (define-key isearch-mode-map (kbd "M-r")
  1287. 'isearch-query-replace-regexp)
  1288. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  1289. (setq lazy-highlight-cleanup nil)
  1290. ;; face for isearch highlighing
  1291. (set-face-attribute 'lazy-highlight
  1292. nil
  1293. :foreground `unspecified
  1294. :background `unspecified
  1295. :underline t
  1296. ;; :weight `bold
  1297. )
  1298. (add-hook 'outline-mode-hook
  1299. (lambda ()
  1300. (when (string-match "\\.md\\'" buffer-file-name)
  1301. (set (make-local-variable 'outline-regexp) "#+ "))))
  1302. (add-hook 'outline-mode-hook
  1303. 'outline-show-all)
  1304. (add-to-list 'auto-mode-alist (cons "\\.ol\\'" 'outline-mode))
  1305. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  1306. (when (autoload-eval-lazily 'markdown-mode
  1307. '(markdown-mode gfm-mode)
  1308. (defvar gfm-mode-map (make-sparse-keymap))
  1309. (define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline))
  1310. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
  1311. (set-variable 'markdown-command (or (executable-find "markdown")
  1312. (executable-find "markdown.pl")
  1313. ""))
  1314. (add-hook 'markdown-mode-hook
  1315. (lambda ()
  1316. (outline-minor-mode 1)
  1317. (flyspell-mode)
  1318. (set (make-local-variable 'comment-start) ";")))
  1319. )
  1320. ;; c-mode
  1321. ;; http://www.emacswiki.org/emacs/IndentingC
  1322. ;; http://en.wikipedia.org/wiki/Indent_style
  1323. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  1324. ;; http://seesaawiki.jp/whiteflare503/d/Emacs%20%a5%a4%a5%f3%a5%c7%a5%f3%a5%c8
  1325. (with-eval-after-load 'cc-vars
  1326. (defvar c-default-style nil)
  1327. (add-to-list 'c-default-style
  1328. '(c-mode . "k&r"))
  1329. (add-to-list 'c-default-style
  1330. '(c++-mode . "k&r")))
  1331. (autoload-eval-lazily 'js2-mode nil
  1332. ;; currently do not use js2-mode
  1333. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  1334. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  1335. ;; (defvar js2-mode-map (make-sparse-keymap))
  1336. ;; (define-key js2-mode-map (kbd "C-m") (lambda ()
  1337. ;; (interactive)
  1338. ;; (js2-enter-key)
  1339. ;; (indent-for-tab-command)))
  1340. ;; (add-hook (kill-local-variable 'before-save-hook)
  1341. ;; 'js2-before-save)
  1342. ;; (add-hook 'before-save-hook
  1343. ;; 'my-indent-buffer
  1344. ;; nil
  1345. ;; t)
  1346. )
  1347. (add-to-list 'interpreter-mode-alist
  1348. '("node" . js-mode))
  1349. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  1350. (with-eval-after-load 'uniquify
  1351. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  1352. (setq uniquify-ignore-buffers-re "*[^*]+*")
  1353. (setq uniquify-min-dir-content 1))
  1354. (with-eval-after-load 'view
  1355. (defvar view-mode-map (make-sparse-keymap))
  1356. (define-key view-mode-map "j" 'scroll-up-line)
  1357. (define-key view-mode-map "k" 'scroll-down-line)
  1358. (define-key view-mode-map "v" 'toggle-read-only)
  1359. (define-key view-mode-map "q" 'bury-buffer)
  1360. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  1361. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  1362. ;; (define-key view-mode-map
  1363. ;; "n" 'nonincremental-repeat-search-forward)
  1364. ;; (define-key view-mode-map
  1365. ;; "N" 'nonincremental-repeat-search-backward)
  1366. ;; N conflicts with git-walktree
  1367. ;; (define-key view-mode-map "/" 'isearch-forward-regexp)
  1368. ;; (define-key view-mode-map "?" 'isearch-backward-regexp)
  1369. ;; (define-key view-mode-map "n" 'isearch-repeat-forward)
  1370. ;; (define-key view-mode-map "N" 'isearch-repeat-backward)
  1371. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point))
  1372. (global-set-key "\M-r" 'view-mode)
  1373. ;; (setq view-read-only t)
  1374. (with-eval-after-load 'term
  1375. (defvar term-raw-map (make-sparse-keymap))
  1376. (define-key term-raw-map (kbd "C-x")
  1377. (lookup-key (current-global-map)
  1378. (kbd "C-x"))))
  1379. (add-hook 'term-mode-hook
  1380. (lambda ()
  1381. ;; Stop current line highlighting
  1382. (set (make-local-variable (defvar hl-line-range-function))
  1383. (lambda () '(0 . 0)))
  1384. (set (make-local-variable 'scroll-margin)
  1385. 0)
  1386. (set-variable 'term-buffer-maximum-size 20480)
  1387. ))
  1388. (add-hook 'Man-mode-hook
  1389. (lambda ()
  1390. (view-mode 1)
  1391. (setq truncate-lines nil)))
  1392. (set-variable 'Man-notify-method (if window-system
  1393. 'newframe
  1394. 'aggressive))
  1395. (set-variable 'woman-cache-filename (expand-file-name (concat user-emacs-directory
  1396. "woman_cache.el")))
  1397. ;; not work because man.el will be loaded when man called
  1398. (defalias 'man 'woman)
  1399. (add-to-list 'auto-mode-alist
  1400. '("tox\\.ini\\'" . conf-unix-mode))
  1401. (when (autoload-eval-lazily 'toml-mode)
  1402. (add-to-list 'auto-mode-alist
  1403. '("/tox\\.ini\\'" . toml-mode))
  1404. (add-to-list 'auto-mode-alist
  1405. '("/Pipfile\\'" . toml-mode))
  1406. (add-to-list 'auto-mode-alist
  1407. '("/poetry\\.lock\\'" . toml-mode))
  1408. )
  1409. (when (autoload-eval-lazily 'json-mode)
  1410. (add-to-list 'auto-mode-alist
  1411. '("/Pipfile\\.lock\\'" . json-mode)))
  1412. (add-hook 'go-mode-hook
  1413. (lambda()
  1414. (defvar go-mode-map)
  1415. (add-hook 'before-save-hook' 'gofmt-before-save nil t)
  1416. (define-key go-mode-map (kbd "M-.") 'godef-jump)))
  1417. (when (autoload-eval-lazily 'k8s-mode)
  1418. (add-to-list 'auto-mode-alist
  1419. '("\\.k8s\\'" . k8s-mode)))
  1420. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1421. ;; buffers
  1422. (defvar bs-configurations)
  1423. (declare-function bs-set-configuration "bs")
  1424. (declare-function bs-refresh "bs")
  1425. (declare-function bs-message-without-log "bs")
  1426. (declare-function bs--current-config-message "bs")
  1427. (when (autoload-eval-lazily 'bs '(bs-show)
  1428. (add-to-list 'bs-configurations
  1429. '("specials" "^\\*" nil ".*" nil nil))
  1430. (add-to-list 'bs-configurations
  1431. '("files-and-specials" "^\\*" buffer-file-name ".*" nil nil))
  1432. (defvar bs-mode-map)
  1433. (defvar bs-current-configuration)
  1434. (define-key bs-mode-map (kbd "t")
  1435. ;; TODO: fix toggle feature
  1436. (lambda ()
  1437. (interactive)
  1438. (if (string= "specials"
  1439. bs-current-configuration)
  1440. (bs-set-configuration "files")
  1441. (bs-set-configuration "specials"))
  1442. (bs-refresh)
  1443. (bs-message-without-log "%s"
  1444. (bs--current-config-message))))
  1445. ;; (setq bs-configurations (list
  1446. ;; '("processes" nil get-buffer-process ".*" nil nil)
  1447. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  1448. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  1449. )
  1450. (defalias 'list-buffers 'bs-show)
  1451. (set-variable 'bs-default-configuration "files-and-specials")
  1452. (set-variable 'bs-default-sort-name "by nothing")
  1453. (add-hook 'bs-mode-hook
  1454. (lambda ()
  1455. (set (make-local-variable 'scroll-margin) 0))))
  1456. ;;(iswitchb-mode 1)
  1457. (icomplete-mode)
  1458. (defun iswitchb-buffer-display-other-window ()
  1459. "Do iswitchb in other window."
  1460. (interactive)
  1461. (let ((iswitchb-default-method 'display))
  1462. (call-interactively 'iswitchb-buffer)))
  1463. ;; buffer killing
  1464. ;; (defun my-delete-window-killing-buffer () nil)
  1465. (defun my-query-kill-current-buffer ()
  1466. "Interactively kill current buffer."
  1467. (interactive)
  1468. (if (y-or-n-p (concat "kill current buffer? :"))
  1469. (kill-buffer (current-buffer))))
  1470. ;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
  1471. (substitute-key-definition 'kill-buffer
  1472. 'my-query-kill-current-buffer
  1473. global-map)
  1474. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1475. ;; dired
  1476. (defun my-file-head (filename &optional n)
  1477. "Return list of first N lines of file FILENAME."
  1478. ;; TODO: Fix for janapese text
  1479. ;; TODO: Fix for short text
  1480. (let ((num (or n 10))
  1481. (size 100)
  1482. (beg 0)
  1483. (end 0)
  1484. (result '())
  1485. (read -1))
  1486. (with-temp-buffer
  1487. (erase-buffer)
  1488. (while (or (<= (count-lines (point-min)
  1489. (point-max))
  1490. num)
  1491. (eq read 0))
  1492. (setq end (+ beg size))
  1493. (setq read (nth 1 (insert-file-contents-literally filename
  1494. nil
  1495. beg
  1496. end)))
  1497. (goto-char (point-max))
  1498. (setq beg (+ beg size)))
  1499. (goto-char (point-min))
  1500. (while (< (length result) num)
  1501. (let ((start (point)))
  1502. (forward-line 1)
  1503. (setq result
  1504. `(,@result ,(buffer-substring-no-properties start
  1505. (point))))))
  1506. result
  1507. ;; (buffer-substring-no-properties (point-min)
  1508. ;; (progn
  1509. ;; (forward-line num)
  1510. ;; (point)))
  1511. )))
  1512. ;; (apply 'concat (my-file-head "./shrc" 10)
  1513. (defun my-dired-echo-file-head (arg)
  1514. "Echo head of current file.
  1515. ARG is num to show, or defaults to 7."
  1516. (interactive "P")
  1517. (let ((f (dired-get-filename)))
  1518. (message "%s"
  1519. (apply 'concat
  1520. (my-file-head f
  1521. 7)))))
  1522. (defun my-dired-diff ()
  1523. "Show diff of marked file and file of current line."
  1524. (interactive)
  1525. (let ((files (dired-get-marked-files nil nil nil t)))
  1526. (if (eq (car files)
  1527. t)
  1528. (diff (cadr files) (dired-get-filename))
  1529. (message "One file must be marked!"))))
  1530. (defun dired-get-file-info ()
  1531. "Print information of current line file."
  1532. (interactive)
  1533. (let ((f (shell-quote-argument (dired-get-filename t))))
  1534. (if (file-directory-p f)
  1535. (progn
  1536. (message "Calculating disk usage...")
  1537. (shell-command (concat "du -hsD "
  1538. f)))
  1539. (shell-command (concat "file "
  1540. f)))))
  1541. (defun my-dired-scroll-up ()
  1542. "Scroll up."
  1543. (interactive)
  1544. (my-dired-previous-line (- (window-height) 1)))
  1545. (defun my-dired-scroll-down ()
  1546. "Scroll down."
  1547. (interactive)
  1548. (my-dired-next-line (- (window-height) 1)))
  1549. ;; (defun my-dired-forward-line (arg)
  1550. ;; ""
  1551. ;; (interactive "p"))
  1552. (defun my-dired-previous-line (arg)
  1553. "Move ARG lines up."
  1554. (interactive "p")
  1555. (if (> arg 0)
  1556. (progn
  1557. (if (eq (line-number-at-pos)
  1558. 1)
  1559. (goto-char (point-max))
  1560. (forward-line -1))
  1561. (my-dired-previous-line (if (or (dired-get-filename nil t)
  1562. (dired-get-subdir))
  1563. (- arg 1)
  1564. arg)))
  1565. (dired-move-to-filename)))
  1566. (defun my-dired-next-line (arg)
  1567. "Move ARG lines down."
  1568. (interactive "p")
  1569. (if (> arg 0)
  1570. (progn
  1571. (if (eq (point)
  1572. (point-max))
  1573. (goto-char (point-min))
  1574. (forward-line 1))
  1575. (my-dired-next-line (if (or (dired-get-filename nil t)
  1576. (dired-get-subdir))
  1577. (- arg 1)
  1578. arg)))
  1579. (dired-move-to-filename)))
  1580. (defun my-tramp-remote-find-file (f)
  1581. "Open F."
  1582. (interactive (list (read-file-name "My Find File Tramp: "
  1583. "/scp:"
  1584. nil ;; "/scp:"
  1585. (confirm-nonexistent-file-or-buffer))))
  1586. (find-file f))
  1587. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  1588. (if (eq window-system 'mac)
  1589. (setq dired-listing-switches "-lhF")
  1590. (setq dired-listing-switches "-lhF --time-style=long-iso")
  1591. )
  1592. (setq dired-listing-switches "-lhF")
  1593. ;; when using dired-find-alternate-file
  1594. ;; reuse current dired buffer for the file to open
  1595. ;; (put 'dired-find-alternate-file 'disabled nil)
  1596. (set-variable 'dired-ls-F-marks-symlinks t)
  1597. (set-variable 'ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  1598. (set-variable 'ls-lisp-dirs-first t)
  1599. (set-variable 'ls-lisp-use-localized-time-format t)
  1600. (set-variable 'ls-lisp-format-time-list
  1601. '("%Y-%m-%d %H:%M"
  1602. "%Y-%m-%d "))
  1603. (set-variable 'dired-dwim-target t)
  1604. (set-variable 'dired-isearch-filenames t)
  1605. (set-variable 'dired-hide-details-hide-symlink-targets nil)
  1606. (set-variable 'dired-hide-details-hide-information-lines nil)
  1607. (set-variable 'dired-deletion-confirmer 'y-or-n-p)
  1608. (set-variable 'dired-recursive-deletes 'always)
  1609. ;; (add-hook 'dired-after-readin-hook
  1610. ;; 'my-replace-nasi-none)
  1611. (with-eval-after-load 'dired
  1612. (safe-require-or-eval 'ls-lisp)
  1613. (defvar dired-mode-map (make-sparse-keymap))
  1614. ;; dired-do-chgrp sometimes cause system hung
  1615. (define-key dired-mode-map "G" 'ignore)
  1616. (define-key dired-mode-map "e" 'wdired-change-to-wdired-mode)
  1617. (define-key dired-mode-map "i" 'dired-get-file-info)
  1618. ;; (define-key dired-mode-map "f" 'find-file)
  1619. (define-key dired-mode-map "f" 'my-fzf-or-find-file)
  1620. (define-key dired-mode-map "z" 'fzf)
  1621. (define-key dired-mode-map "!" 'shell-command)
  1622. (define-key dired-mode-map "&" 'async-shell-command)
  1623. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1624. (define-key dired-mode-map "=" 'my-dired-diff)
  1625. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1626. (define-key dired-mode-map "b" 'gtkbm)
  1627. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  1628. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1629. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  1630. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  1631. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  1632. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  1633. (substitute-key-definition 'dired-next-line
  1634. 'my-dired-next-line
  1635. dired-mode-map)
  1636. (substitute-key-definition 'dired-previous-line
  1637. 'my-dired-previous-line
  1638. dired-mode-map)
  1639. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  1640. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  1641. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  1642. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  1643. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1644. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1645. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  1646. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  1647. (add-hook 'dired-mode-hook
  1648. (lambda ()
  1649. (when (fboundp 'dired-hide-details-mode)
  1650. (dired-hide-details-mode t)
  1651. (local-set-key "l" 'dired-hide-details-mode))
  1652. (let ((file "._Icon\015"))
  1653. (when nil
  1654. '(file-readable-p file)
  1655. (delete-file file)))))
  1656. (when (autoload-eval-lazily 'pack '(dired-do-pack-or-unpack pack-pack)
  1657. (defvar pack-program-alist)
  1658. (add-to-list 'pack-program-alist
  1659. '("\\.txz\\'" :pack "tar -cJf" :unpack "tar -xf")))
  1660. (set-variable 'pack-silence
  1661. t)
  1662. (with-eval-after-load 'dired
  1663. (define-key dired-mode-map "P" 'pack-dired-dwim)))
  1664. (when (autoload-eval-lazily 'dired-list-all-mode)
  1665. (setq dired-listing-switches "-lhF")
  1666. (with-eval-after-load 'dired
  1667. (define-key dired-mode-map "a" 'dired-list-all-mode))))
  1668. (when (autoload-eval-lazily 'dired-filter)
  1669. (add-hook 'dired-mode-hook
  1670. 'dired-filter-mode))
  1671. (set-variable 'dired-filter-stack nil)
  1672. ;; Currently disabled in favor of dired-from-git-ls-files
  1673. ;; (define-key ctl-x-map "f" 'find-dired)
  1674. (defvar my-dired-git-ls-files-history
  1675. "History for `my-dired-git-ls-files'." nil)
  1676. (defun my-dired-git-ls-files (arg)
  1677. "Dired from git ls-files."
  1678. (interactive (list
  1679. (read-shell-command "git ls-files: "
  1680. "git ls-files -z ")))
  1681. (pop-to-buffer-same-window
  1682. (dired-noselect `(,default-directory
  1683. ,@(split-string (shell-command-to-string arg)
  1684. "\0" t))
  1685. ""))
  1686. )
  1687. (define-key ctl-x-map (kbd "G") 'my-dired-git-ls-files)
  1688. (with-eval-after-load 'dired
  1689. (defvar dired-mode-map (make-sparse-keymap))
  1690. (define-key dired-mode-map "G" 'my-dired-git-ls-files))
  1691. ;; (define-minor-mode my-dired-glob-filter)
  1692. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1693. ;; misc funcs
  1694. (define-key ctl-x-map "T" 'git-worktree)
  1695. (define-key ctl-x-map "W" 'git-walktree)
  1696. (when (fboundp 'browse-url-default-macosx-browser)
  1697. (defalias 'browse-osx 'browse-url-default-macosx-browser))
  1698. (defalias 'qcalc 'quick-calc)
  1699. (defun memo (&optional dir)
  1700. "Open memo.txt in DIR."
  1701. (interactive)
  1702. (pop-to-buffer (find-file-noselect (concat (if dir
  1703. (file-name-as-directory dir)
  1704. "")
  1705. "memo.txt"))))
  1706. ;; TODO: remember-projectile
  1707. (set (defvar my-privnotes-path nil
  1708. "My privnotes repository path.")
  1709. (expand-file-name "~/my/privnotes"))
  1710. (defun my-privnotes-readme (dir)
  1711. "Open my privnotes DIR."
  1712. (interactive (list
  1713. (read-file-name "Privnotes: "
  1714. (expand-file-name (format-time-string "%Y%m%d_")
  1715. my-privnotes-path))))
  1716. (let ((path (expand-file-name "README.md" dir)))
  1717. (with-current-buffer (find-file path)
  1718. (unless (file-exists-p path)
  1719. (insert (file-name-base dir)
  1720. "\n"
  1721. "=======\n"
  1722. "\n\n")))))
  1723. (define-key ctl-x-map "p" 'my-privnotes-readme)
  1724. (set (defvar my-rgrep-alist nil
  1725. "Alist of rgrep command.
  1726. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  1727. condition to choose COMMAND when evaluated.")
  1728. `(
  1729. ;; ripgrep
  1730. ("rg"
  1731. (executable-find "rg")
  1732. "rg -nH --no-heading --color=always --hidden --glob '!.git/' --smart-case -M 1280 ")
  1733. ;; git grep
  1734. ("gitgrep"
  1735. (eq 0
  1736. (shell-command "git rev-parse --git-dir"))
  1737. "git --no-pager -c color.grep=always grep -nH -e ")
  1738. ;; sift
  1739. ("sift"
  1740. (executable-find "sift")
  1741. ("sift --binary-skip --filename --line-number --git --smart-case "))
  1742. ;; the silver searcher
  1743. ("ag"
  1744. (executable-find "ag")
  1745. "ag --nogroup --nopager --filename ")
  1746. ;; ack
  1747. ("ack"
  1748. (executable-find "ack")
  1749. "ack --nogroup --nopager --with-filename ")
  1750. ;; gnu global
  1751. ("global"
  1752. (and (require 'ggtags nil t)
  1753. (executable-find "global")
  1754. (ggtags-current-project-root))
  1755. "global --result grep ")
  1756. ;; grep
  1757. ("grep"
  1758. t
  1759. ,(concat "find . "
  1760. "-path '*/.git' -prune -o "
  1761. "-path '*/.svn' -prune -o "
  1762. "-type f -print0 | "
  1763. "xargs -0 grep -nH -e "))
  1764. )
  1765. )
  1766. (defvar my-rgrep-default nil
  1767. "Default command name for my-rgrep.")
  1768. (defun my-rgrep-grep-command (&optional name alist)
  1769. "Return recursive grep command for current directory or nil.
  1770. If NAME is given, use that without testing.
  1771. Commands are searched from ALIST."
  1772. (if alist
  1773. (if name
  1774. ;; if name is given search that from alist and return the command
  1775. (nth 2 (assoc name
  1776. alist))
  1777. ;; if name is not given try test in 1th elem
  1778. (let ((car (car alist))
  1779. (cdr (cdr alist)))
  1780. (if (eval (nth 1 car))
  1781. ;; if the condition is true return the command
  1782. (nth 2 car)
  1783. ;; try next one
  1784. (and cdr
  1785. (my-rgrep-grep-command name cdr)))))
  1786. ;; if alist is not given set default value
  1787. (my-rgrep-grep-command name my-rgrep-alist)))
  1788. (defun my-rgrep (command-args)
  1789. "My recursive grep. Run COMMAND-ARGS.
  1790. If prefix argument is given, use current symbol as default search target
  1791. and search from projectile root (if projectile is available)."
  1792. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  1793. nil)))
  1794. (if cmd
  1795. (list (read-shell-command "grep command: "
  1796. (concat cmd
  1797. (if current-prefix-arg
  1798. (thing-at-point 'symbol t)
  1799. ""))
  1800. 'grep-find-history))
  1801. (error "My-Rgrep: Command for rgrep not found")
  1802. )))
  1803. (if (and current-prefix-arg
  1804. (safe-require-or-eval 'projectile)
  1805. (projectile-project-p))
  1806. (projectile-with-default-dir (projectile-project-root)
  1807. (compilation-start command-args
  1808. 'grep-mode))
  1809. (compilation-start command-args
  1810. 'grep-mode)))
  1811. (defun my-rgrep-thing-at-point-projectile-root ()
  1812. "My recursive grep to find thing at point from project root."
  1813. (interactive)
  1814. (let* ((cmd (my-rgrep-grep-command my-rgrep-default
  1815. nil))
  1816. (command-args
  1817. (if cmd
  1818. (concat cmd
  1819. (or (thing-at-point 'symbol t)
  1820. (error "No symbol at point")))
  1821. (error "My-Rgrep: Command for rgrep not found"))))
  1822. (if (safe-require-or-eval 'projectile)
  1823. (projectile-with-default-dir (or (projectile-project-root)
  1824. default-directory)
  1825. (compilation-start command-args
  1826. 'grep-mode))
  1827. (compilation-start command-args
  1828. 'grep-mode))))
  1829. (defmacro define-my-rgrep (name)
  1830. "Define rgrep for NAME."
  1831. `(defun ,(intern (concat "my-rgrep-"
  1832. name)) ()
  1833. ,(format "My recursive grep by %s."
  1834. name)
  1835. (interactive)
  1836. (let ((my-rgrep-default ,name))
  1837. (if (called-interactively-p 'any)
  1838. (call-interactively 'my-rgrep)
  1839. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  1840. )
  1841. (define-my-rgrep "ack")
  1842. (define-my-rgrep "ag")
  1843. (define-my-rgrep "rg")
  1844. (define-my-rgrep "sift")
  1845. (define-my-rgrep "gitgrep")
  1846. (define-my-rgrep "grep")
  1847. (define-my-rgrep "global")
  1848. (define-key ctl-x-map "s" 'my-rgrep)
  1849. (define-key ctl-x-map "." 'my-rgrep-thing-at-point-projectile-root)
  1850. (defun my-occur (regexp &optional region)
  1851. "My occur command to search REGEXP."
  1852. (interactive (list (read-string "List lines matching regexp: "
  1853. (thing-at-point 'symbol t))))
  1854. (occur regexp nil region))
  1855. (define-key ctl-x-map (kbd "C-o") 'my-occur)
  1856. (set-variable 'dumb-jump-prefer-searcher 'rg)
  1857. (defalias 'make 'compile)
  1858. (define-key ctl-x-map "c" 'compile)
  1859. (defun my-pushbullet-note (text &optional title)
  1860. "Push TEXT."
  1861. (interactive "sText to Push: ")
  1862. (pb/push-item '("") text "note" (or title "")))
  1863. ;;;;;;;;;;;;;;;;;;;;;
  1864. ;; git-bug
  1865. (defconst git-bug-ls-regexp
  1866. (eval-when-compile
  1867. (rx bol
  1868. (submatch (one-or-more alphanumeric)) ; id
  1869. ;; (one-or-more any)
  1870. (one-or-more space)
  1871. (submatch (or "open" "close")) ; status
  1872. (one-or-more space)
  1873. (submatch (maximal-match (zero-or-more print))) ; title
  1874. "\t"
  1875. (submatch (one-or-more alphanumeric)) ; user
  1876. (one-or-more space)
  1877. "C:"
  1878. (submatch (one-or-more digit)) ; Comment num
  1879. (one-or-more space)
  1880. "L:"
  1881. (submatch (one-or-more digit)) ; Label num
  1882. eol
  1883. ))
  1884. "Regexp to parse line of output of git-bug ls.
  1885. Used by `git-bug-ls'.")
  1886. (defun git-bug-bugs ()
  1887. "Get list of git-bug bugs."
  1888. (with-temp-buffer
  1889. (git-bug--call-process "bug" "ls")
  1890. (goto-char (point-min))
  1891. (let ((bugs nil))
  1892. (while (not (eq (point) (point-max)))
  1893. (save-match-data
  1894. (when (re-search-forward git-bug-ls-regexp (point-at-eol) t)
  1895. (setq bugs `(,@bugs
  1896. ,(list
  1897. :id (match-string 1)
  1898. :status (match-string 2)
  1899. :title (string-trim (match-string 3))
  1900. :user (match-string 4)
  1901. :comment-num (match-string 5)
  1902. :label-num (match-string 6)
  1903. )))))
  1904. (forward-line 1)
  1905. (goto-char (point-at-bol)))
  1906. bugs)))
  1907. (defun git-bug-ls-noselect (&optional directory)
  1908. "Open git bug list buffer.
  1909. If optional arg DIRECTORY is given change current directory to there before
  1910. initializing."
  1911. (setq directory (expand-file-name (or directory
  1912. default-directory)))
  1913. (cl-assert (file-directory-p directory))
  1914. (let* ((root (git-bug--get-repository-root directory))
  1915. (name (file-name-nondirectory root))
  1916. (bname (format "*GitBug<%s>*" name)))
  1917. (with-current-buffer (get-buffer-create bname)
  1918. (cd root)
  1919. (git-bug-ls--set-tabulated-list-mode-variables)
  1920. (git-bug-ls-mode)
  1921. (current-buffer))))
  1922. (defun git-bug--get-repository-root (dir)
  1923. "Resolve repository root of DIR.
  1924. If DIR is not inside of any git repository, signal an error."
  1925. (cl-assert (file-directory-p dir))
  1926. (with-temp-buffer
  1927. (cd dir)
  1928. (git-bug--call-process "rev-parse" "--show-toplevel")
  1929. (goto-char (point-min))
  1930. (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
  1931. (defun git-bug--call-process (&rest args)
  1932. "Start git process synchronously with ARGS.
  1933. Raise error when git process ends with non-zero status.
  1934. Any output will be written to current buffer."
  1935. (let ((status (apply 'call-process
  1936. "git"
  1937. nil
  1938. t
  1939. nil
  1940. args)))
  1941. (cl-assert (eq status 0)
  1942. nil
  1943. (buffer-substring-no-properties (point-min) (point-max)))))
  1944. ;;;;;;;;;;;;;;;;;;;
  1945. ;; peek-file-mode
  1946. (defun peek-file (file)
  1947. "Peek FILE."
  1948. (interactive)
  1949. (message "%s" file))
  1950. ;;;;;;;;;;;;;;;;;;;;
  1951. ;; remember-projectile
  1952. ;; TODO: Add global-minor-mode
  1953. (defvar remember-data-file)
  1954. (defun my-set-remember-data-file-buffer-local ()
  1955. "Set `remember-data-file'."
  1956. (when (require 'projectile nil t)
  1957. (setq-local remember-data-file
  1958. (expand-file-name ".remember.notes"
  1959. (projectile-project-root)))))
  1960. (add-hook 'after-change-major-mode-hook
  1961. 'my-set-remember-data-file-buffer-local)
  1962. ;;;;;;;;;;;;;;;;;;;;;;;
  1963. ;; flycheck-pydocstyle
  1964. (require 'flycheck nil t)
  1965. (flycheck-define-checker python-pydocstyle
  1966. "Docstring style checker."
  1967. :command ("python" "-m" "pydocstyle"
  1968. source-inplace)
  1969. :error-patterns
  1970. (
  1971. (error line-start (file-name) ":" line " " (one-or-more not-newline) "\n" (one-or-more blank) (message) line-end)
  1972. )
  1973. :enabled (lambda ()
  1974. (or (not (flycheck-python-needs-module-p 'python-pydocstyle))
  1975. (flycheck-python-find-module 'python-black-check "pydocstyle")))
  1976. :verify (lambda (_) (flycheck-python-verify-module 'python-black-check "pydocstyle"))
  1977. :modes python-mode)
  1978. (defun flycheck-pydocstyle-setup ()
  1979. "Setup Flycheck pydocstyle."
  1980. (interactive)
  1981. (add-to-list 'flycheck-checkers
  1982. 'python-pydocstyle))
  1983. (flycheck-pydocstyle-setup)
  1984. ;; Local Variables:
  1985. ;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
  1986. ;; flycheck-checker: emacs-lisp
  1987. ;; End:
  1988. ;;; emancs.el ends here