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.
 
 
 
 
 
 

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