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.
 
 
 
 
 
 

3132 lines
105 KiB

  1. ;;; emacs.el --- 10sr emacs initialization
  2. ;;; Code:
  3. ;; SETUP_LOAD: (load "bytecomp") ;; Required for WSL environment
  4. ;; SETUP_LOAD: (let ((file "DOTFILES_DIR/emacs.el"))
  5. ;; SETUP_LOAD: (and (file-readable-p file)
  6. ;; SETUP_LOAD: (byte-recompile-file file nil 0 t)))
  7. ;; TODO: Use custom-set-variables in place of set-variable
  8. (setq debug-on-error t)
  9. ;; make directories
  10. (unless (file-directory-p (expand-file-name user-emacs-directory))
  11. (make-directory (expand-file-name user-emacs-directory)))
  12. ;; Custom file
  13. (setq custom-file (expand-file-name "custom.el" user-emacs-directory))
  14. (when (file-readable-p custom-file)
  15. (load custom-file))
  16. (require 'cl-lib)
  17. (require 'simple)
  18. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  19. ;; Some macros for internals
  20. (defvar after-first-visit-hook nil
  21. "Run only once at the first visit of file.")
  22. (defvar after-first-visit-hook--done nil
  23. "Non-nil when `after-first-visit-hook' has already been called.")
  24. (defun after-first-visit-hook-run ()
  25. "Run `after-first-visit-hook' and clear its config."
  26. (when (not after-first-visit-hook--done)
  27. (run-hooks 'after-first-visit-hook))
  28. (setq after-first-visit-hook--done t)
  29. (remove-hook 'find-file-hook
  30. 'after-first-visit-hook-run))
  31. (add-hook 'find-file-hook
  32. 'after-first-visit-hook-run)
  33. (defmacro eval-after-init (&rest body)
  34. "If `after-init-hook' has been run, run BODY immediately.
  35. Otherwize hook it."
  36. (declare (indent 0) (debug t))
  37. `(if after-init-time
  38. ;; Currently after-init-hook is run just after setting after-init-hook
  39. (progn
  40. ,@body)
  41. (add-hook 'after-init-hook
  42. (lambda ()
  43. ,@body))))
  44. ;; (defmacro safe-require-or-eval (feature)
  45. ;; "Require FEATURE if available.
  46. ;; At compile time the feature will be loaded immediately."
  47. ;; `(eval-and-compile
  48. ;; (message "safe-require-or-eval: Trying to require %s" ,feature)
  49. ;; (require ,feature nil t)))
  50. ;; (defmacro autoload-eval-lazily (feature &optional functions &rest body)
  51. ;; "Define autoloading FEATURE that defines FUNCTIONS.
  52. ;; FEATURE is a symbol. FUNCTIONS is a list of symbols. If FUNCTIONS is nil,
  53. ;; the function same as FEATURE is defined as autoloaded function. BODY is passed
  54. ;; to `eval-after-load'.
  55. ;; After this macro is expanded, this returns the path to library if FEATURE
  56. ;; found, otherwise returns nil."
  57. ;; (declare (indent 2) (debug t))
  58. ;; (let* ((libname (symbol-name (eval feature)))
  59. ;; (libpath (locate-library libname)))
  60. ;; `(progn
  61. ;; (when (locate-library ,libname)
  62. ;; ,@(mapcar (lambda (f)
  63. ;; `(unless (fboundp ',f)
  64. ;; (progn
  65. ;; (message "Autoloaded function `%S' defined (%s)"
  66. ;; (quote ,f)
  67. ;; ,libpath)
  68. ;; (autoload (quote ,f)
  69. ;; ,libname
  70. ;; ,(concat "Autoloaded function defined in \""
  71. ;; libpath
  72. ;; "\".")
  73. ;; t))))
  74. ;; (or (eval functions)
  75. ;; `(,(eval feature)))))
  76. ;; (eval-after-load ,feature
  77. ;; (quote (progn
  78. ;; ,@body)))
  79. ;; (locate-library ,libname))))
  80. ;; (when (autoload-eval-lazily 'tetris nil
  81. ;; (message "Tetris loaded!"))
  82. ;; (message "Tetris found!"))
  83. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  84. ;; package
  85. (require 'package)
  86. (set-variable 'package-archives
  87. `(,@package-archives
  88. ("melpa" . "https://melpa.org/packages/")
  89. ;; Somehow fails to download via https
  90. ("10sr-el" . "http://10sr.github.io/emacs-lisp/elpa/")))
  91. (package-initialize)
  92. ;; Use package-install-selected-packages to install these
  93. (let ((my '(
  94. vimrc-mode
  95. markdown-mode
  96. yaml-mode
  97. gnuplot-mode
  98. php-mode
  99. erlang
  100. js2-mode
  101. js-doc
  102. git-commit
  103. gitignore-mode
  104. adoc-mode
  105. go-mode
  106. ;; It seems malabar has been merged into jdee and this package
  107. ;; already removed
  108. ;; malabar-mode
  109. gosh-mode
  110. scala-mode
  111. web-mode
  112. toml-mode
  113. json-mode
  114. color-moccur
  115. ggtags
  116. flycheck
  117. auto-highlight-symbol
  118. hl-todo
  119. ;; Currently not available
  120. ;; pp-c-l
  121. xclip
  122. foreign-regexp
  123. multi-term
  124. term-run
  125. editorconfig
  126. git-ps1-mode
  127. restart-emacs
  128. fill-column-indicator
  129. pkgbuild-mode
  130. minibuffer-line
  131. which-key
  132. ;; I think this works in place of my autosave lib
  133. super-save
  134. pipenv
  135. imenu-list
  136. page-break-lines
  137. ;; aggressive-indent
  138. dired-filter
  139. wgrep
  140. magit
  141. git-gutter
  142. end-mark
  143. sl
  144. ;; TODO: Configure pony-tpl-mode
  145. pony-mode
  146. gited
  147. highlight-indentation
  148. diminish
  149. fzf
  150. fic-mode
  151. term-cursor
  152. pydoc
  153. color-identifiers-mode
  154. dired-k
  155. blacken
  156. back-button
  157. with-venv
  158. nyan-mode
  159. diredfl
  160. hardhat
  161. editorconfig
  162. editorconfig-custom-majormode
  163. git-command
  164. prompt-text
  165. ;; 10sr repository
  166. ;; 10sr-extras
  167. terminal-title
  168. dired-list-all-mode
  169. pack
  170. set-modeline-color
  171. read-only-only-mode
  172. smart-revert
  173. autosave
  174. ;;window-organizer
  175. ilookup
  176. pasteboard
  177. awk-preview
  178. recently
  179. )))
  180. (set-variable 'package-selected-packages
  181. (cl-remove-duplicates (append package-selected-packages
  182. my
  183. ()))))
  184. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  185. ;; my-idle-hook
  186. (defvar my-idle-hook nil
  187. "Hook run when idle for several secs.")
  188. (defvar my-idle-hook-sec 5
  189. "Second to run `my-idle-hook'.")
  190. (run-with-idle-timer my-idle-hook-sec
  191. t
  192. (lambda ()
  193. (run-hooks 'my-idle-hook)))
  194. ;; (add-hook 'my-idle-hook
  195. ;; (lambda ()
  196. ;; (message "idle hook message")))
  197. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  198. ;; start and quit
  199. (setq inhibit-startup-message t)
  200. (setq initial-buffer-choice 'messages-buffer)
  201. (setq confirm-kill-emacs 'y-or-n-p)
  202. ;; (setq gc-cons-threshold (* 1024 1024 16))
  203. (setq garbage-collection-messages nil)
  204. (when window-system
  205. (add-to-list 'default-frame-alist '(cursor-type . box))
  206. (add-to-list 'default-frame-alist '(background-color . "white"))
  207. (add-to-list 'default-frame-alist '(foreground-color . "gray10"))
  208. ;; (add-to-list 'default-frame-alist '(alpha . (80 100 100 100)))
  209. ;; does not work?
  210. )
  211. ;; (add-to-list 'default-frame-alist '(cursor-type . box))
  212. (menu-bar-mode 1)
  213. (define-key ctl-x-map "M" 'menu-bar-open)
  214. (defalias 'menu 'menu-bar-open)
  215. (and (fboundp 'tool-bar-mode)
  216. (tool-bar-mode 0))
  217. (and (fboundp 'set-scroll-bar-mode)
  218. (set-scroll-bar-mode nil))
  219. (eval-after-init
  220. (message "%s %s" invocation-name emacs-version)
  221. (message "Invocation directory: %s" default-directory)
  222. (message "%s was taken to initialize emacs." (emacs-init-time))
  223. ;; (view-echo-area-messages)
  224. ;; (view-emacs-news)
  225. )
  226. (with-current-buffer "*Messages*"
  227. (emacs-lock-mode 'kill))
  228. (cd ".") ; when using windows use / instead of \ in `default-directory'
  229. ;; locale
  230. (set-language-environment "Japanese")
  231. (set-default-coding-systems 'utf-8-unix)
  232. (prefer-coding-system 'utf-8-unix)
  233. (setq system-time-locale "C")
  234. ;; my prefix map
  235. (defvar my-prefix-map nil
  236. "My prefix map.")
  237. (define-prefix-command 'my-prefix-map)
  238. (global-set-key (kbd "C-^") 'my-prefix-map)
  239. ;; (define-key my-prefix-map (kbd "C-q") 'quoted-insert)
  240. ;; (define-key my-prefix-map (kbd "C-z") 'suspend-frame)
  241. ;; (comint-show-maximum-output)
  242. ;; kill scratch
  243. (eval-after-init
  244. (let ((buf (get-buffer "*scratch*")))
  245. (when buf
  246. (kill-buffer buf))))
  247. ;; modifier keys
  248. ;; (setq mac-option-modifier 'control)
  249. ;; display
  250. (setq visible-bell t)
  251. (setq ring-bell-function 'ignore)
  252. (mouse-avoidance-mode 'banish)
  253. (setq echo-keystrokes 0.1)
  254. (defun reload-init-file ()
  255. "Reload Emacs init file."
  256. (interactive)
  257. (when (and user-init-file
  258. (file-readable-p user-init-file))
  259. (load-file user-init-file)))
  260. (require 'session nil t)
  261. ;; server
  262. (set-variable 'server-name (concat "server"
  263. (number-to-string (emacs-pid))))
  264. ;; In Cygwin Environment `server-runnning-p' stops when server-use-tcp is nil
  265. ;; In Darwin environment, init fails with message like 'Service name too long'
  266. ;; when server-use-tcp is nil
  267. (when (or (eq system-type
  268. 'cygwin)
  269. (eq system-type
  270. 'darwin))
  271. (set-variable 'server-use-tcp t))
  272. ;; MSYS2 fix
  273. (when (eq system-type
  274. 'windows-nt)
  275. (setq shell-file-name
  276. (executable-find "bash"))
  277. '(setq function-key-map
  278. `(,@function-key-map ([pause] . [?\C-c])
  279. ))
  280. (define-key key-translation-map
  281. (kbd "<pause>")
  282. (kbd "C-c"))
  283. '(keyboard-translate [pause]
  284. (kbd "C-c")p)
  285. ;; TODO: move to other place later
  286. (when (not window-system)
  287. (setq interprogram-paste-function nil)
  288. (setq interprogram-cut-function nil)))
  289. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  290. ;; global keys
  291. (global-set-key (kbd "<up>") 'scroll-down-line)
  292. (global-set-key (kbd "<down>") 'scroll-up-line)
  293. (global-set-key (kbd "<left>") 'scroll-down)
  294. (global-set-key (kbd "<right>") 'scroll-up)
  295. ;; (define-key my-prefix-map (kbd "C-h") help-map)
  296. ;; (global-set-key (kbd "C-\\") help-map)
  297. (define-key ctl-x-map (kbd "DEL") help-map)
  298. (define-key ctl-x-map (kbd "C-h") help-map)
  299. ;; This is often fired mistakenly
  300. (define-key ctl-x-map "h" 'ignore) ;; Previously mark-whole-buffer
  301. (define-key help-map "a" 'apropos)
  302. ;; disable annoying keys
  303. (global-set-key [prior] 'ignore)
  304. (global-set-key (kbd "<next>") 'ignore)
  305. (global-set-key [menu] 'ignore)
  306. (global-set-key [down-mouse-1] 'ignore)
  307. (global-set-key [down-mouse-2] 'ignore)
  308. (global-set-key [down-mouse-3] 'ignore)
  309. (global-set-key [mouse-1] 'ignore)
  310. (global-set-key [mouse-2] 'ignore)
  311. (global-set-key [mouse-3] 'ignore)
  312. (global-set-key (kbd "<eisu-toggle>") 'ignore)
  313. (global-set-key (kbd "C-<eisu-toggle>") 'ignore)
  314. ;; Interactively evaluate Emacs Lisp expressions
  315. (define-key ctl-x-map "i" 'ielm)
  316. (when (fboundp 'which-key-mode)
  317. (which-key-mode))
  318. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  319. ;; editor
  320. ;; Basically it should not set globally (instead use something like file local
  321. ;; variables or editorconfig), but for most cases I just need this...
  322. (defun my-set-require-final-newline ()
  323. "Set `require-final-newline'."
  324. (set (make-local-variable 'require-final-newline)
  325. mode-require-final-newline))
  326. (add-hook 'prog-mode-hook
  327. 'my-set-require-final-newline)
  328. (add-hook 'text-mode-hook
  329. 'my-set-require-final-newline)
  330. (add-hook 'conf-mode-hook
  331. 'my-set-require-final-newline)
  332. ;; Used from term-cursor
  333. ;; hbar is too hard to find...
  334. (defun my-cursor-type-change (&rest args)
  335. "ARGS are discarded."
  336. ;; TODO: Support wdired and wgrep
  337. (if buffer-read-only
  338. (setq cursor-type 'hbar)
  339. (setq cursor-type 'box)))
  340. ;; (add-hook 'switch-buffer-functions
  341. ;; 'my-cursor-type-change)
  342. ;; (add-hook 'read-only-mode-hook
  343. ;; 'my-cursor-type-change)
  344. ;; (when (fboundp 'global-term-cursor-mode)
  345. ;; (global-term-cursor-mode 1))
  346. ;; ;; (term-cursor--eval)
  347. (setq kill-whole-line t)
  348. (setq scroll-conservatively 35
  349. scroll-margin 2)
  350. (setq-default major-mode 'text-mode)
  351. (setq next-line-add-newlines nil)
  352. (setq kill-read-only-ok t)
  353. (setq truncate-partial-width-windows nil) ; when splitted horizontally
  354. ;; (setq-default line-spacing 0.2)
  355. (setq-default indicate-empty-lines t) ; when using x indicate empty line
  356. ;; (setq-default tab-width 4)
  357. (setq-default indent-tabs-mode nil)
  358. (setq-default indent-line-function 'indent-to-left-margin)
  359. ;; (setq-default indent-line-function nil)
  360. (setq-default truncate-lines nil)
  361. ;; (pc-selection-mode 1) ; make some already defined keybind back to default
  362. (delete-selection-mode 1)
  363. (cua-mode 0)
  364. (setq line-move-visual nil)
  365. (setq create-lockfiles nil)
  366. (setq set-mark-command-repeat-pop t)
  367. (setq-default fill-column 80)
  368. (add-hook 'before-save-hook
  369. 'time-stamp)
  370. ;; Add Time-stamp: <> to insert timestamp there
  371. (set-variable 'time-stamp-format
  372. "%:y-%02m-%02d %02H:%02M:%02S %Z 10sr")
  373. ;; key bindings
  374. ;; moving around
  375. ;;(keyboard-translate ?\M-j ?\C-j)
  376. ;; (global-set-key (kbd "M-p") 'backward-paragraph)
  377. (define-key esc-map "p" 'backward-paragraph)
  378. ;; (global-set-key (kbd "M-n") 'forward-paragraph)
  379. (define-key esc-map "n" 'forward-paragraph)
  380. (global-set-key (kbd "C-<up>") 'scroll-down-line)
  381. (global-set-key (kbd "C-<down>") 'scroll-up-line)
  382. (global-set-key (kbd "C-<left>") 'scroll-down)
  383. (global-set-key (kbd "C-<right>") 'scroll-up)
  384. (global-set-key (kbd "<select>") 'ignore) ; 'previous-line-mark)
  385. (define-key ctl-x-map (kbd "ESC x") 'execute-extended-command)
  386. (define-key ctl-x-map (kbd "ESC :") 'eval-expression)
  387. ;; C-h and DEL
  388. (global-set-key (kbd "C-h") (kbd "DEL"))
  389. ;; (normal-erase-is-backspace-mode 1)
  390. ;;(global-set-key (kbd "C-m") 'reindent-then-newline-and-indent)
  391. (global-set-key (kbd "C-m") 'newline-and-indent)
  392. ;; (global-set-key (kbd "C-o") (kbd "C-e C-m"))
  393. ;; (global-set-key "\C-z" 'undo) ; undo is M-u
  394. (define-key esc-map "u" 'undo)
  395. (define-key esc-map "i" (kbd "ESC TAB"))
  396. ;; (global-set-key (kbd "C-r") 'query-replace-regexp)
  397. ;; (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  398. ;; (global-set-key (kbd "C-r") 'isearch-backward-regexp)
  399. (set-variable 'search-default-mode t)
  400. ;; TODO: Do not depend on ivy function
  401. ;; (set-variable 'search-default-mode
  402. ;; (lambda (str lax)
  403. ;; (ivy--regex-fuzzy (replace-regexp-in-string (rx (one-or-more whitespace))
  404. ;; ""
  405. ;; str))))
  406. (when (fboundp 'undo-fu-only-undo)
  407. (global-set-key (kbd "C-_") 'undo-fu-only-undo))
  408. (when (fboundp 'undo-fu-only-redo)
  409. (global-set-key (kbd "C-M-_") 'undo-fu-only-redo))
  410. (require 'page-ext nil t)
  411. (when (fboundp 'global-page-break-lines-mode)
  412. (add-hook 'after-first-visit-hook
  413. 'global-page-break-lines-mode))
  414. (with-eval-after-load 'page-break-lines
  415. (set-face-foreground 'page-break-lines
  416. "cyan")
  417. )
  418. (defun my-insert-page-break ()
  419. "Insert ^L."
  420. (interactive)
  421. (insert "\^L\n"))
  422. (when (fboundp 'global-git-gutter-mode)
  423. (add-hook 'after-first-visit-hook
  424. 'global-git-gutter-mode))
  425. (with-eval-after-load 'git-gutter
  426. (declare-function global-git-gutter-mode "git-gutter")
  427. (custom-set-variables
  428. '(git-gutter:lighter " Gttr"))
  429. (custom-set-variables
  430. '(git-gutter:update-interval 2))
  431. (custom-set-variables
  432. '(git-gutter:unchanged-sign " "))
  433. (when (>= (display-color-cells)
  434. 256)
  435. (let ((c "color-233"))
  436. (set-face-background 'git-gutter:modified c)
  437. (set-face-background 'git-gutter:added c)
  438. (set-face-background 'git-gutter:deleted c)
  439. (set-face-background 'git-gutter:unchanged c)))
  440. (set-face-background 'git-gutter:modified "magenta")
  441. (set-face-background 'git-gutter:added "green")
  442. (set-face-background 'git-gutter:deleted "red")
  443. )
  444. ;; (when (fboundp 'fancy-narrow-mode)
  445. ;; (add-hook 'after-first-visit-hook
  446. ;; 'fancy-narrow-mode))
  447. ;; https://solist.work/blog/posts/mark-ring/
  448. (set-variable 'mark-ring-max 32)
  449. (defun my-exchange-point-and-mark ()
  450. "`exchange-point-and-mark' without mark activation."
  451. (interactive)
  452. (exchange-point-and-mark)
  453. (deactivate-mark))
  454. (define-key ctl-x-map (kbd "C-x") 'my-exchange-point-and-mark)
  455. (when (fboundp 'counsel-mark-ring)
  456. (define-key ctl-x-map "m" 'counsel-mark-ring))
  457. (with-eval-after-load 'ivy
  458. (defvar ivy-sort-functions-alist)
  459. (add-to-list 'ivy-sort-functions-alist
  460. '(counsel-mark-ring)))
  461. (run-with-idle-timer 10 t
  462. (lambda ()
  463. (push-mark)
  464. ;; (when (fboundp 'visible-mark-move-overlays)
  465. ;; (visible-mark-move-overlays))
  466. ))
  467. (add-hook 'switch-buffer-functions
  468. (lambda (&rest _)
  469. (unless (or (mark t)
  470. (minibufferp))
  471. (push-mark))))
  472. (add-hook 'switch-buffer-functions
  473. (lambda (&rest _)
  474. (when (minibufferp)
  475. ;; Remove mark in minibuffer
  476. (set-mark nil))))
  477. (when (fboundp 'back-button-mode)
  478. (back-button-mode 1))
  479. (when (fboundp 'back-button-local-forward)
  480. (global-set-key (kbd "<right>") 'back-button-local-forward))
  481. (when (fboundp 'back-button-local-backward)
  482. (global-set-key (kbd "<left>") 'back-button-local-backward))
  483. (when (fboundp 'global-visible-mark-mode)
  484. (set-variable 'visible-mark-max 2)
  485. ;; (set-variable 'visible-mark-faces '(visible-mark-face1 visible-mark-face2))
  486. ;; http://emacs.rubikitch.com/visible-mark/
  487. ;; transient-mark-modeでC-SPC C-SPC、あるいはC-SPC C-gすると消えるバグ修正
  488. (defun visible-mark-move-overlays--avoid-disappear (&rest them)
  489. "Fix.
  490. THEM are function and its args."
  491. (let ((mark-active t)) (apply them)))
  492. (advice-add 'visible-mark-move-overlays
  493. :around
  494. 'visible-mark-move-overlays--avoid-disappear)
  495. ;; (global-visible-mark-mode 1)
  496. )
  497. ;; visible-mark-mode
  498. ;; visible-mark-overlays
  499. ;; mark-ring
  500. ;; (equal mark-ring (cl-copy-list mark-ring))
  501. (when (fboundp 'global-hardhat-mode)
  502. (with-eval-after-load 'hardhat
  503. (defvar hardhat-fullpath-protected-regexps)
  504. (add-to-list 'hardhat-fullpath-protected-regexps
  505. "/\\.venv/")
  506. (defvar hardhat-fullpath-editable-regexps)
  507. (add-to-list 'hardhat-fullpath-editable-regexps
  508. "/\\.git/EDIT_INDEX\\.diff\\'")
  509. (defvar hardhat-basename-editable-regexps)
  510. (add-to-list 'hardhat-basename-editable-regexps
  511. "\\`Pipfile.lock\\'")
  512. )
  513. (global-hardhat-mode 1))
  514. (with-eval-after-load 'ignoramus
  515. (defvar ignoramus-file-basename-exact-names)
  516. (set-variable 'ignoramus-file-basename-exact-names
  517. (delete "profile"
  518. ignoramus-file-basename-exact-names))
  519. (set-variable 'ignoramus-file-basename-exact-names
  520. (delete "Profile"
  521. ignoramus-file-basename-exact-names))
  522. )
  523. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  524. ;; title and mode-line
  525. (when (fboundp 'terminal-title-mode)
  526. ;; if TERM is not screen use default value
  527. (if (getenv "TMUX")
  528. ;; if use tmux locally just basename of current dir
  529. (set-variable 'terminal-title-format
  530. '((file-name-nondirectory (directory-file-name
  531. default-directory))))
  532. (if (and (let ((tty-type (frame-parameter nil
  533. 'tty-type)))
  534. (and tty-type
  535. (equal (car (split-string tty-type
  536. "-"))
  537. "screen")))
  538. (not (getenv "SSH_CONNECTION")))
  539. (set-variable 'terminal-title-format
  540. '((file-name-nondirectory (directory-file-name
  541. default-directory))))
  542. ;; seems that TMUX is used locally and ssh to remote host
  543. (set-variable 'terminal-title-format
  544. `("em:"
  545. ,user-login-name
  546. "@"
  547. ,(car (split-string (system-name)
  548. "\\."))
  549. ":"
  550. default-directory))
  551. )
  552. )
  553. (terminal-title-mode))
  554. (setq eol-mnemonic-dos "\\r\\n")
  555. (setq eol-mnemonic-mac "\\r")
  556. (setq eol-mnemonic-unix "")
  557. (which-function-mode 1)
  558. (line-number-mode 0)
  559. (column-number-mode 0)
  560. (size-indication-mode 0)
  561. (setq mode-line-position
  562. '(:eval (format ":%%l:%%c /%d%s"
  563. (count-lines (point-max)
  564. (point-min))
  565. (if (buffer-narrowed-p)
  566. "[N]"
  567. "")
  568. )))
  569. (when (fboundp 'diminish)
  570. (eval-after-init
  571. (diminish 'recently-mode)
  572. (diminish 'editorconfig-mode)
  573. (diminish 'which-key-mode)
  574. )
  575. (with-eval-after-load 'whitespace
  576. (diminish 'global-whitespace-mode))
  577. (with-eval-after-load 'page-break-lines
  578. (diminish 'page-break-lines-mode))
  579. (with-eval-after-load 'auto-highlight-symbol
  580. (diminish 'auto-highlight-symbol-mode))
  581. (with-eval-after-load 'color-identifiers-mode
  582. (diminish 'color-identifiers-mode))
  583. (with-eval-after-load 'highlight-indentation
  584. (diminish 'highlight-indentation-mode))
  585. (with-eval-after-load 'back-button
  586. (diminish 'back-button-mode))
  587. (with-eval-after-load 'git-gutter
  588. (diminish 'git-gutter-mode))
  589. (with-eval-after-load 'autorevert
  590. (diminish 'auto-revert-mode))
  591. )
  592. (setq mode-line-front-space "")
  593. ;; (setq mode-line-end-spaces "")
  594. ;; Set current frame name to empty string
  595. (setq-default mode-line-format
  596. (let* ((l mode-line-format)
  597. (l (cl-substitute " " " "
  598. l
  599. :test 'equal))
  600. (l (cl-substitute " " " "
  601. l
  602. :test 'equal))
  603. )
  604. l))
  605. (set-frame-parameter nil 'name "")
  606. ;; See color-name-rgb-alist for available color names
  607. ;; http://www.raebear.net/computers/emacs-colors/
  608. ;; https://www.emacswiki.org/emacs/ListColors
  609. ;; (list-colors-display is not a complete list)
  610. (defconst my-mode-line-background-default
  611. (face-background 'mode-line)
  612. "Default color of mode-line at init.")
  613. (defun my-mode-line-color-update (&rest args)
  614. "ARGS are discarded"
  615. (let ((ro "skyblue")
  616. (rw my-mode-line-background-default))
  617. (if (or (not buffer-read-only)
  618. (and (eq major-mode 'wdired-mode)))
  619. (set-face-background 'mode-line
  620. rw)
  621. (set-face-background 'mode-line
  622. ro))))
  623. (add-hook 'switch-buffer-functions
  624. 'my-mode-line-color-update)
  625. (add-hook 'read-only-mode-hook
  626. 'my-mode-line-color-update)
  627. (add-hook 'wdired-mode-hook
  628. 'my-mode-line-color-update)
  629. (advice-add 'wdired-change-to-dired-mode
  630. :after
  631. 'my-mode-line-color-update)
  632. (advice-add 'wgrep-change-to-wgrep-mode
  633. :after
  634. 'my-mode-line-color-update)
  635. (advice-add 'wgrep-to-original-mode
  636. :after
  637. 'my-mode-line-color-update)
  638. (with-eval-after-load 'hardhat
  639. ;; hardhat-mode-hook does not work as expected...
  640. (advice-add 'hardhat-local-hook
  641. :after
  642. 'my-mode-line-color-update))
  643. (set-face-background 'header-line
  644. my-mode-line-background-default)
  645. ;; sky-color-clock
  646. ;; https://tsuu32.hatenablog.com/entry/2019/11/07/020005
  647. (declare-function sky-color-clock "sky-color-clock")
  648. (declare-function sky-color-clock-initialize "sky-color-clock")
  649. (defun sky-color-clock--form ()
  650. "Gen string for right aligned form."
  651. (let* ((sky-color-clock-str
  652. (propertize (sky-color-clock) 'help-echo (format-time-string "Sky color clock\n%F (%a)")))
  653. (mode-line-right-margin
  654. (propertize " " 'display `(space :align-to (- right-fringe ,(length sky-color-clock-str))))))
  655. (concat mode-line-right-margin sky-color-clock-str)))
  656. (when (require 'sky-color-clock nil t)
  657. (sky-color-clock-initialize 35) ; Tokyo, Japan
  658. (set-variable 'sky-color-clock-format "%H:%M")
  659. (set-variable 'sky-color-clock-enable-emoji-icon nil)
  660. (setq mode-line-end-spaces '(:eval (sky-color-clock--form))))
  661. ;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title
  662. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  663. ;; minibuffer
  664. (setq insert-default-directory t)
  665. (setq completion-ignore-case t
  666. read-file-name-completion-ignore-case t
  667. read-buffer-completion-ignore-case t)
  668. (setq resize-mini-windows t)
  669. (temp-buffer-resize-mode 1)
  670. (savehist-mode 1)
  671. (defvar display-time-format "%Y/%m/%d %a %H:%M")
  672. (set-variable 'help-at-pt-display-when-idle t)
  673. (fset 'yes-or-no-p 'y-or-n-p)
  674. ;; complete symbol when `eval'
  675. (define-key read-expression-map (kbd "TAB") 'completion-at-point)
  676. (define-key minibuffer-local-map (kbd "C-u")
  677. (lambda () (interactive) (delete-region (point-at-bol) (point))))
  678. ;; I dont know these bindings are good
  679. (define-key minibuffer-local-map (kbd "C-p") (kbd "ESC p"))
  680. (define-key minibuffer-local-map (kbd "C-n") (kbd "ESC n"))
  681. (with-eval-after-load 'minibuffer-line
  682. (set-face-underline 'minibuffer-line nil)
  683. )
  684. (when (fboundp 'minibuffer-line-mode)
  685. (set-variable 'minibuffer-line-refresh-interval
  686. 25)
  687. ;; Set idle timer
  688. (defvar my-minibuffer-line--idle-timer nil)
  689. (defvar minibuffer-line-mode)
  690. (add-hook 'minibuffer-line-mode-hook
  691. (lambda ()
  692. (when my-minibuffer-line--idle-timer
  693. (cancel-timer my-minibuffer-line--idle-timer)
  694. (setq my-minibuffer-line--idle-timer nil))
  695. (when minibuffer-line-mode
  696. (setq my-minibuffer-line--idle-timer
  697. (run-with-idle-timer 0.5
  698. t
  699. 'minibuffer-line--update)))))
  700. (set-variable 'minibuffer-line-format
  701. `(,(concat user-login-name
  702. "@"
  703. (car (split-string (system-name)
  704. "\\."))
  705. ":")
  706. (:eval (abbreviate-file-name (or buffer-file-name
  707. default-directory)))
  708. (:eval (and (fboundp 'git-ps1-mode-get-current)
  709. (git-ps1-mode-get-current " [GIT:%s]")))
  710. " "
  711. (:eval (format-time-string display-time-format))))
  712. (when (eval-and-compile (require 'nyan-mode nil t))
  713. (set-variable 'minibuffer-line-format
  714. '((:eval (progn
  715. (list (nyan-create))))))
  716. (defun my-nyan-set-length (&rest _)
  717. "Set `nyan-mode' length to window width."
  718. (set-variable 'nyan-bar-length
  719. (- (frame-parameter nil 'width) 4)))
  720. ;; (my-nyan-set-length)
  721. ;; (add-hook 'after-init-hook
  722. ;; 'my-nyan-set-length)
  723. (add-hook 'window-configuration-change-hook
  724. 'my-nyan-set-length)
  725. (add-hook 'switch-buffer-functions
  726. 'my-nyan-set-length)
  727. )
  728. (minibuffer-line-mode 1)
  729. )
  730. (when (fboundp 'prompt-text-mode)
  731. (set-variable 'prompt-text-format
  732. `(,(concat ""
  733. user-login-name
  734. "@"
  735. (car (split-string (system-name)
  736. "\\."))
  737. ":")
  738. (:eval (abbreviate-file-name (or buffer-file-name
  739. default-directory)))
  740. (:eval (and (fboundp 'git-ps1-mode-get-current)
  741. (git-ps1-mode-get-current " [GIT:%s]")))
  742. " "
  743. (:eval (format-time-string display-time-format))
  744. "\n"
  745. (:eval (symbol-name this-command))
  746. ": "))
  747. (prompt-text-mode 1))
  748. (with-eval-after-load 'helm
  749. (defvar helm-map)
  750. (define-key helm-map (kbd "C-h") (kbd "DEL")))
  751. (setq-default header-line-format
  752. '(:eval (let ((f (or (buffer-file-name)
  753. default-directory)))
  754. (when f
  755. (abbreviate-file-name f)))))
  756. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  757. ;; letters, font-lock mode and fonts
  758. (when (fboundp 'color-identifiers-mode)
  759. (add-hook 'prog-mode-hook
  760. 'color-identifiers-mode))
  761. (setq text-quoting-style 'grave)
  762. ;; (set-face-background 'vertical-border (face-foreground 'mode-line))
  763. ;; (set-window-margins (selected-window) 1 1)
  764. (unless window-system
  765. (setq frame-background-mode 'dark))
  766. (and (or (eq system-type 'Darwin)
  767. (eq system-type 'darwin))
  768. (fboundp 'mac-set-input-method-parameter)
  769. (mac-set-input-method-parameter 'japanese 'cursor-color "red")
  770. (mac-set-input-method-parameter 'roman 'cursor-color "black"))
  771. (when (and (boundp 'input-method-activate-hook) ; i dont know this is correct
  772. (boundp 'input-method-inactivate-hook))
  773. (add-hook 'input-method-activate-hook
  774. (lambda () (set-cursor-color "red")))
  775. (add-hook 'input-method-inactivate-hook
  776. (lambda () (set-cursor-color "black"))))
  777. (when (fboundp 'show-paren-mode)
  778. (add-hook 'after-first-visit-hook
  779. 'show-paren-mode))
  780. (set-variable 'show-paren-delay 0.5)
  781. (set-variable 'show-paren-style 'parenthesis) ; mixed is hard to read
  782. ;; (set-face-background 'show-paren-match
  783. ;; "black")
  784. ;; ;; (face-foreground 'default))
  785. ;; (set-face-foreground 'show-paren-match
  786. ;; "white")
  787. ;; (set-face-inverse-video-p 'show-paren-match
  788. ;; t)
  789. (transient-mark-mode 1)
  790. (global-font-lock-mode 1)
  791. (setq font-lock-global-modes
  792. '(not
  793. help-mode
  794. eshell-mode
  795. ;;term-mode
  796. Man-mode
  797. ))
  798. ;; (standard-display-ascii ?\n "$\n")
  799. ;; (defvar my-eol-face
  800. ;; '(("\n" . (0 font-lock-comment-face t nil)))
  801. ;; )
  802. ;; (defvar my-tab-face
  803. ;; '(("\t" . '(0 highlight t nil))))
  804. (defvar my-jspace-face
  805. '(("\u3000" . '(0 highlight t nil))))
  806. (add-hook 'font-lock-mode-hook
  807. (lambda ()
  808. ;; (font-lock-add-keywords nil my-eol-face)
  809. (font-lock-add-keywords nil my-jspace-face)
  810. ))
  811. (set-variable 'font-lock-maximum-decoration
  812. '(
  813. ;; (python-mode . 2)
  814. (t . 2)
  815. ))
  816. (when (fboundp 'global-whitespace-mode)
  817. (add-hook 'after-first-visit-hook
  818. 'global-whitespace-mode))
  819. (add-hook 'dired-mode-hook
  820. ;; Other way to disable in dired buffers?
  821. (lambda () (set-variable 'whitespace-style nil t)))
  822. (with-eval-after-load 'whitespace
  823. (defvar whitespace-display-mappings)
  824. (defvar whitespace-mode)
  825. (add-to-list 'whitespace-display-mappings
  826. ;; We need t since last one takes precedence
  827. `(tab-mark ?\t ,(vconcat "|>\t")) t)
  828. ;; (add-to-list 'whitespace-display-mappings
  829. ;; `(newline-mark ?\n ,(vconcat "$\n")))
  830. (set-variable 'whitespace-style '(face
  831. trailing ; trailing blanks
  832. ;; tabs
  833. ;; spaces
  834. ;; lines
  835. lines-tail ; lines over 80
  836. newline ; newlines
  837. ;; empty ; empty lines at beg or end of buffer
  838. ;; big-indent
  839. ;; space-mark
  840. tab-mark
  841. newline-mark ; use display table for newline
  842. ))
  843. ;; (setq whitespace-newline 'font-lock-comment-face)
  844. ;; (setq whitespace-style (delq 'newline-mark whitespace-style))
  845. (defun my-whitesspace-mode-reload ()
  846. "Reload whitespace-mode config."
  847. (interactive)
  848. (when whitespace-mode
  849. (whitespace-mode 0)
  850. (whitespace-mode 1)))
  851. (set-variable 'whitespace-line-column nil)
  852. (if (>= (display-color-cells)
  853. 256)
  854. (set-face-foreground 'whitespace-newline "color-109")
  855. ;; (progn
  856. ;; (set-face-bold-p 'whitespace-newline
  857. ;; t))
  858. ))
  859. (and nil
  860. '(require 'fill-column-indicator nil t)
  861. (setq fill-column-indicator))
  862. (defun my-gen-hl-line-color-dark ()
  863. "Generate color for current line in black background."
  864. (let* ((candidates (mapcar 'number-to-string (number-sequence 1 6)))
  865. (limit (length candidates))
  866. (r 0) (g 0) (b 0))
  867. (while (and (<= (abs (- r g)) 1)
  868. (<= (abs (- g b)) 1)
  869. (<= (abs (- b r)) 1))
  870. (setq r (random limit))
  871. (setq g (random limit))
  872. (setq b (random limit)))
  873. (format "#%s%s%s"
  874. (nth r candidates)
  875. (nth g candidates)
  876. (nth b candidates)
  877. )))
  878. ;; (my-gen-hl-line-color-dark)
  879. ;; highlight current line
  880. ;; http://wiki.riywo.com/index.php?Meadow
  881. (face-spec-set 'hl-line
  882. `((((min-colors 256)
  883. (background dark))
  884. ;; Rotate midnightblue
  885. (:background ,(my-gen-hl-line-color-dark)))
  886. (((min-colors 256)
  887. (background light))
  888. ;; TODO: What is should be?
  889. (:background "color-234"))
  890. (t
  891. (:underline "black"))))
  892. (set-variable 'hl-line-global-modes
  893. '(not
  894. term-mode))
  895. (global-hl-line-mode 1) ;; (hl-line-mode 1)
  896. (set-face-foreground 'font-lock-regexp-grouping-backslash "#666")
  897. (set-face-foreground 'font-lock-regexp-grouping-construct "#f60")
  898. ;;(require 'set-modeline-color nil t)
  899. ;; (let ((fg (face-foreground 'default))
  900. ;; (bg (face-background 'default)))
  901. ;; (set-face-background 'mode-line-inactive
  902. ;; (if (face-inverse-video-p 'mode-line) fg bg))
  903. ;; (set-face-foreground 'mode-line-inactive
  904. ;; (if (face-inverse-video-p 'mode-line) bg fg)))
  905. ;; (set-face-underline 'mode-line-inactive
  906. ;; t)
  907. ;; (set-face-underline 'vertical-border
  908. ;; nil)
  909. ;; (when (require 'end-mark nil t)
  910. ;; (global-end-mark-mode))
  911. ;; M-x highlight-* to highlight things
  912. (global-hi-lock-mode 1)
  913. (unless (fboundp 'highlight-region-text)
  914. (defun highlight-region-text (beg end)
  915. "Highlight text between BEG and END."
  916. (interactive "r")
  917. (highlight-regexp (regexp-quote (buffer-substring-no-properties beg
  918. end)))
  919. (setq deactivate-mark t)))
  920. (when (fboundp 'auto-highlight-symbol-mode)
  921. (add-hook 'prog-mode-hook
  922. 'auto-highlight-symbol-mode))
  923. ;; Not work in combination with flyspell-mode
  924. ;; (when (fboundp 'global-auto-highlight-symbol-mode)
  925. ;; (add-hook 'after-first-visit-hook
  926. ;; 'global-auto-highlight-symbol-mode))
  927. (set-variable 'ahs-idle-interval 0.6)
  928. (when (fboundp 'highlight-indentation-mode)
  929. (dolist (hook
  930. '(
  931. prog-mode-hook
  932. text-mode-hook
  933. ))
  934. ;; Makes display slow?
  935. ;; (add-hook hook
  936. ;; 'highlight-indentation-mode)
  937. ))
  938. (with-eval-after-load 'highlight-indentation
  939. (set-face-background 'highlight-indentation-face "color-236"))
  940. ;; (set-face-background 'highlight-indentation-current-column-face "#c3b3b3")
  941. (when (fboundp 'fic-mode)
  942. (add-hook 'prog-mode-hook
  943. 'fic-mode))
  944. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  945. ;; file handling
  946. (auto-insert-mode 1)
  947. ;; fzf
  948. ;; Too slow in term buffer!
  949. ;; (set-variable 'fzf/executable "sk")
  950. ;; (set-variable 'fzf/args "--color bw --print-query")
  951. ;; Modified from hardcoded default to include:
  952. ;; - directories
  953. ;; - hidden files
  954. ;; - root directory (.)
  955. ;; - parent directory (..)
  956. ;; ripgrep cannot list directories...
  957. ;; (setenv "FZF_DEFAULT_COMMAND" "rg --files --hidden --follow --glob '!.git/*' --no-ignore")
  958. (defvar my-fzf-default-command nil
  959. "My fzf FZF_DEFAULT_COMMAND.")
  960. (set-variable 'my-fzf-default-command
  961. (let ((find (or (executable-find "bfs") ;; Breadth-first find https://github.com/tavianator/bfs
  962. ;; Use gfind if available?
  963. "find"))
  964. (fd (or (executable-find "fdfind")
  965. (executable-find "fd"))))
  966. (if fd
  967. (concat "set -eu; set -o pipefail; "
  968. "echo .; "
  969. "echo ..; "
  970. "command " fd " "
  971. "--follow --hidden --no-ignore "
  972. "--color always "
  973. "2>/dev/null")
  974. (concat "set -eu; set -o pipefail; "
  975. "echo .; "
  976. "echo ..; "
  977. "command " find " -L . "
  978. "-mindepth 1 "
  979. "\\( -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune "
  980. "-o -print "
  981. "2> /dev/null "
  982. "| "
  983. "cut -b3-"))))
  984. (set-variable 'fzf/window-height 45)
  985. (set-variable 'fzf/args "--print-query --ansi --color='bg+:-1' --inline-info --cycle")
  986. ;; (set-variable 'fzf/args "--print-query --ansi --inline-info --cycle")
  987. ;; (set-variable 'fzf/args "--print-query --ansi --color=bw --inline-info --cycle")
  988. (declare-function fzf "fzf" t)
  989. (defun my-fzf-or-find-file ()
  990. "Call fzf if usable or call `find-file'."
  991. (declare (interactive-only t))
  992. (interactive)
  993. (if (and (executable-find "fzf")
  994. (fboundp 'fzf)
  995. (not (file-remote-p default-directory)))
  996. (let ((process-environment (cl-copy-list process-environment)))
  997. (setenv "FZF_DEFAULT_COMMAND" my-fzf-default-command)
  998. (my-fzf))
  999. (call-interactively 'find-file)))
  1000. (defvar fzf/position-bottom)
  1001. (declare-function fzf/start "fzf")
  1002. (declare-function term-reset-size "term")
  1003. (defun my-fzf ()
  1004. "Invoke `fzf' with my configurations."
  1005. (require 'fzf)
  1006. (let ((dir (or (ignore-errors
  1007. (require 'projectile)
  1008. (projectile-project-root))
  1009. default-directory)))
  1010. (set-variable 'fzf/window-height 12)
  1011. (set-variable 'fzf/args
  1012. (concat "--print-query "
  1013. "--ansi "
  1014. "--color='bg+:-1' "
  1015. "--inline-info "
  1016. "--cycle "
  1017. "--reverse "
  1018. (format "--prompt='[%s]> ' "
  1019. dir)))
  1020. (fzf/start dir)
  1021. (let* ((buf (or (get-buffer "*fzf*")
  1022. (error "FZF buffer not found")))
  1023. (current-window (or (get-buffer-window buf)
  1024. (error "FZF window not found")))
  1025. (height (window-height current-window))
  1026. (root-window nil)
  1027. (new-window nil))
  1028. (with-current-buffer buf
  1029. (setq mode-line-format nil))
  1030. (jump-to-register :fzf-windows)
  1031. ;; (delete-window current-window)
  1032. (setq root-window (frame-root-window))
  1033. (setq new-window (split-window root-window
  1034. (- height)
  1035. 'below))
  1036. (select-window new-window)
  1037. (switch-to-buffer buf)
  1038. (term-reset-size (window-height)
  1039. (window-width))
  1040. )))
  1041. (define-key ctl-x-map "f" 'my-fzf-or-find-file)
  1042. (defun my-fzf-all-lines ()
  1043. "Fzf all lines."
  1044. (interactive)
  1045. (unless (executable-find "rg")
  1046. (error "rg not found"))
  1047. (let ((process-environment (cl-copy-list process-environment)))
  1048. (setenv "FZF_DEFAULT_COMMAND" "rg -nH --no-heading --hidden --follow --glob '!.git/*' --color=always ^")
  1049. (fzf)))
  1050. (define-key ctl-x-map "S" 'my-fzf-all-lines)
  1051. ;; recently
  1052. ;; TODO: Enable after first visit file?
  1053. (with-eval-after-load 'recently
  1054. (defvar recently-excludes)
  1055. (add-to-list 'recently-excludes
  1056. (rx-to-string (list 'and
  1057. 'string-start
  1058. (expand-file-name package-user-dir))
  1059. t)))
  1060. (when (fboundp 'recently-mode)
  1061. (define-key ctl-x-map (kbd "C-r") 'recently-show)
  1062. (set-variable 'recently-max 1000)
  1063. (recently-mode 1))
  1064. (defvar my-cousel-recently-history nil "History of `my-counsel-recently'.")
  1065. (declare-function recently-list "recently" t)
  1066. (when (and (require 'recently nil t)
  1067. (fboundp 'ivy-read))
  1068. (defun my-counsel-recently ()
  1069. "Consel `recently'."
  1070. (interactive)
  1071. (ivy-read "Recently: " (mapcar 'abbreviate-file-name (recently-list))
  1072. :require-match t
  1073. :history 'my-cousel-recently-history
  1074. :preselect default-directory
  1075. :action (lambda (x) (find-file x))
  1076. :caller 'my-counsel-recently))
  1077. (define-key ctl-x-map (kbd "C-r") 'my-counsel-recently)
  1078. )
  1079. (when (fboundp 'editorconfig-mode)
  1080. (add-hook 'after-first-visit-hook
  1081. 'editorconfig-mode)
  1082. (add-hook 'after-first-visit-hook
  1083. 'editorconfig-mode-apply
  1084. t)) ;; Do after enabling editorconfig-mode
  1085. (set-variable 'editorconfig-get-properties-function
  1086. 'editorconfig-core-get-properties-hash)
  1087. (set-variable 'editorconfig-mode-lighter "")
  1088. (when (fboundp 'ws-butler-mode)
  1089. (set-variable 'editorconfig-trim-whitespaces-mode
  1090. 'ws-butler-mode))
  1091. (with-eval-after-load 'org-src
  1092. ;; [*.org\[\*Org Src*\[ c \]*\]]
  1093. (add-hook 'org-src-mode-hook
  1094. 'editorconfig-mode-apply t))
  1095. (when (fboundp 'editorconfig-custom-majormode)
  1096. (add-hook 'editorconfig-after-apply-functions
  1097. 'editorconfig-custom-majormode))
  1098. ;; Add readonly=true to set read-only-mode
  1099. (add-hook 'editorconfig-after-apply-functions
  1100. (lambda (props)
  1101. (let ((r (gethash 'readonly props)))
  1102. (when (and (string= r "true")
  1103. (not buffer-read-only))
  1104. (read-only-mode 1)))))
  1105. (add-hook 'editorconfig-hack-properties-functions
  1106. '(lambda (props)
  1107. (when (derived-mode-p 'makefile-mode)
  1108. (puthash 'indent_style "tab" props))
  1109. (when (derived-mode-p 'diff-mode)
  1110. (puthash 'trim_trailing_whitespace "false" props)
  1111. (puthash 'insert_final_newline "false" props)
  1112. )
  1113. ))
  1114. (when (fboundp 'editorconfig-auto-apply-enable)
  1115. (add-hook 'editorconfig-conf-mode-hook
  1116. 'editorconfig-auto-apply-enable))
  1117. ;; (when (fboundp 'editorconfig-charset-extras)
  1118. ;; (add-hook 'editorconfig-custom-hooks
  1119. ;; 'editorconfig-charset-extras))
  1120. (setq revert-without-query '(".+"))
  1121. ;; save cursor position
  1122. (when (fboundp 'save-place-mode)
  1123. (autoload 'save-place-find-file-hook "saveplace")
  1124. (add-hook 'after-first-visit-hook
  1125. 'save-place-mode)
  1126. (add-hook 'after-first-visit-hook
  1127. 'save-place-find-file-hook
  1128. t))
  1129. (set-variable 'save-place-file (concat user-emacs-directory
  1130. "places"))
  1131. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  1132. (setq make-backup-files t)
  1133. (setq vc-make-backup-files t)
  1134. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  1135. (setq backup-directory-alist
  1136. (cons (cons "." (expand-file-name (concat user-emacs-directory
  1137. "backup")))
  1138. backup-directory-alist))
  1139. (setq version-control 't)
  1140. (setq delete-old-versions t)
  1141. (setq kept-new-versions 20)
  1142. (setq auto-save-list-file-prefix (expand-file-name (concat user-emacs-directory
  1143. "auto-save/")))
  1144. ;; (setq delete-auto-save-files t)
  1145. (setq auto-save-visited-interval 8)
  1146. (auto-save-visited-mode 1)
  1147. ;; (add-to-list 'auto-save-file-name-transforms
  1148. ;; `(".*" ,(concat user-emacs-directory "auto-save-dir") t))
  1149. ;; (setq auto-save-interval 3)
  1150. ;; (auto-save-mode 1)
  1151. (add-to-list 'completion-ignored-extensions ".bak")
  1152. (set-variable 'completion-cycle-threshold nil) ;; NEVER use
  1153. (setq delete-by-moving-to-trash t)
  1154. ;; trash-directory "~/.emacs.d/trash")
  1155. (add-hook 'after-save-hook
  1156. 'executable-make-buffer-file-executable-if-script-p)
  1157. (when (fboundp 'smart-revert-on)
  1158. (smart-revert-on))
  1159. ;; autosave
  1160. ;; auto-save-visited-mode can be used instead?
  1161. ;; (when (require 'autosave nil t)
  1162. ;; (autosave-set 8))
  1163. ;; bookmarks
  1164. (set-variable 'bookmark-default-file
  1165. (expand-file-name (concat user-emacs-directory
  1166. "bmk")))
  1167. (set-variable 'bookmark-sort-flag nil)
  1168. (defun my-bookmark-set ()
  1169. "My `bookmark-set'."
  1170. (interactive)
  1171. (cl-assert (or buffer-file-name
  1172. default-directory))
  1173. (let ((name (file-name-nondirectory (or buffer-file-name
  1174. (directory-file-name default-directory))))
  1175. (linenum (count-lines (point-min)
  1176. (point)))
  1177. (linetext (buffer-substring-no-properties (point-at-bol)
  1178. (point-at-eol))))
  1179. (bookmark-set (format "%s:%d:%s"
  1180. name linenum linetext)
  1181. nil)))
  1182. ;; Done by advice instead
  1183. ;; (set-variable 'bookmark-save-flag
  1184. ;; 1)
  1185. (with-eval-after-load 'recentf
  1186. (defvar recentf-exclude)
  1187. (defvar bookmark-default-file)
  1188. (add-to-list 'recentf-exclude
  1189. (regexp-quote bookmark-default-file)))
  1190. (defvar bookmark-default-file)
  1191. (defun my-bookmark-set--advice (orig-func &rest args)
  1192. "Function for `bookmark-set-internal'.
  1193. ORIG-FUNC is the target function, and ARGS is the argument when it is called."
  1194. (bookmark-load bookmark-default-file)
  1195. (apply orig-func args)
  1196. (bookmark-save))
  1197. (with-eval-after-load 'bookmark
  1198. (advice-add 'bookmark-set-internal
  1199. :around
  1200. 'my-bookmark-set--advice))
  1201. (define-key ctl-x-map "b" 'list-bookmarks)
  1202. (when (fboundp 'counsel-bookmark)
  1203. (define-key ctl-x-map "b" 'counsel-bookmark))
  1204. (define-key ctl-x-map "B" 'my-bookmark-set)
  1205. ;; vc
  1206. (set-variable 'vc-handled-backends '(RCS))
  1207. (set-variable 'vc-rcs-register-switches "-l")
  1208. (set-variable 'vc-rcs-checkin-switches "-l")
  1209. (set-variable 'vc-command-messages t)
  1210. (when (fboundp 'neotree)
  1211. (define-key ctl-x-map (kbd "C-n") 'neotree))
  1212. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1213. ;; share clipboard with x
  1214. ;; this page describes this in details, but only these sexps seem to be needed
  1215. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  1216. (and nil
  1217. (not window-system)
  1218. (not (eq window-system 'mac))
  1219. (getenv "DISPLAY")
  1220. (not (equal (getenv "DISPLAY") ""))
  1221. (executable-find "xclip")
  1222. ;; (< emacs-major-version 24)
  1223. '(require 'xclip nil t)
  1224. nil
  1225. (turn-on-xclip))
  1226. (declare-function turn-on-pasteboard "pasteboard")
  1227. (and (eq system-type 'darwin)
  1228. (require 'pasteboard nil t)
  1229. (turn-on-pasteboard))
  1230. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1231. ;; some modes and hooks
  1232. ;; Include some extra modes
  1233. (require 'generic-x)
  1234. ;; Derived from https://github.com/ensime/ensime-emacs/issues/591#issuecomment-291916753
  1235. (defun my-scalafmt ()
  1236. (interactive)
  1237. (cl-assert buffer-file-name)
  1238. (cl-assert (not (buffer-modified-p)))
  1239. (let* ((configdir (locate-dominating-file default-directory ".scalafmt.conf"))
  1240. (configoption (if configdir
  1241. (concat " --config "
  1242. (shell-quote-argument (expand-file-name configdir))
  1243. ".scalafmt.conf"
  1244. )
  1245. ""))
  1246. (str (concat "scalafmt -f "
  1247. (shell-quote-argument buffer-file-name)
  1248. configoption
  1249. " -i --exclude ensime")))
  1250. (message str)
  1251. (shell-command-to-string str))
  1252. (message "scalafmt done")
  1253. (revert-buffer nil t))
  1254. (when (fboundp 'web-mode)
  1255. (add-to-list 'auto-mode-alist
  1256. '("\\.html\\.j2\\'" . web-mode))
  1257. (add-to-list 'auto-mode-alist
  1258. ;; Django Template Language
  1259. '("\\.dtl\\'" . web-mode))
  1260. )
  1261. (when (locate-library "wgrep")
  1262. (set-variable 'wgrep-auto-save-buffer t)
  1263. (with-eval-after-load 'grep
  1264. (defvar grep-mode-map)
  1265. (define-key grep-mode-map
  1266. "e"
  1267. 'wgrep-change-to-wgrep-mode)))
  1268. (when (fboundp 'grep-context-mode)
  1269. (add-hook 'compilation-mode-hook #'grep-context-mode))
  1270. (with-eval-after-load 'remember
  1271. (defvar remember-mode-map)
  1272. (define-key remember-mode-map (kbd "C-x C-s") 'ignore))
  1273. (set-variable 'remember-notes-initial-major-mode
  1274. 'change-log-mode)
  1275. (declare-function global-magit-file-mode "magit-files")
  1276. (with-eval-after-load 'magit-files
  1277. ;; `global-magit-file-mode' is enabled by default and this mode overwrites
  1278. ;; existing keybindings.
  1279. ;; Apparently it is a HARMFUL behavior and it is really awful that I have
  1280. ;; to disable thie mode here, but do anyway.
  1281. ;; See also https://github.com/magit/magit/issues/3517
  1282. (global-magit-file-mode -1))
  1283. (with-eval-after-load 'magit-section
  1284. (set-face-background 'magit-section-highlight
  1285. nil))
  1286. ;; Sane colors
  1287. (with-eval-after-load 'magit-diff
  1288. (set-face-background 'magit-diff-context nil)
  1289. (set-face-background 'magit-diff-context-highlight nil)
  1290. (set-face-foreground 'magit-diff-hunk-heading nil)
  1291. (set-face-background 'magit-diff-hunk-heading nil)
  1292. (set-face-foreground 'magit-diff-hunk-heading-highlight nil)
  1293. (set-face-background 'magit-diff-hunk-heading-highlight nil)
  1294. ;; https://blog.shibayu36.org/entry/2016/03/27/220552
  1295. (set-face-foreground 'magit-diff-added "green")
  1296. (set-face-background 'magit-diff-added nil)
  1297. (set-face-foreground 'magit-diff-added-highlight "green")
  1298. (set-face-background 'magit-diff-added-highlight nil)
  1299. (set-face-foreground 'magit-diff-removed "red")
  1300. (set-face-background 'magit-diff-removed nil)
  1301. (set-face-foreground 'magit-diff-removed-highlight "red")
  1302. (set-face-background 'magit-diff-removed-highlight nil)
  1303. (set-face-background 'magit-diff-lines-boundary "blue")
  1304. )
  1305. (declare-function magit-show-commit "magit")
  1306. (defun my-magit-messenger (file line)
  1307. "Magit messenger."
  1308. (interactive (list buffer-file-name
  1309. (line-number-at-pos)))
  1310. (cl-assert file)
  1311. (cl-assert line)
  1312. (let* ((blame-args '("-w"))
  1313. (id (with-temp-buffer
  1314. (let ((exit (apply 'call-process
  1315. "git" ;; PROGRAM
  1316. nil ;; INFILE
  1317. t ;; DESTINATION
  1318. nil ;; DISPLAY
  1319. "--no-pager" ;; ARGS
  1320. "blame"
  1321. "-L"
  1322. (format "%d,+1" line)
  1323. "--porcelain"
  1324. file
  1325. blame-args
  1326. )))
  1327. (goto-char (point-min))
  1328. (cl-assert (eq exit 0)
  1329. "Failed: %s" (buffer-substring (point)
  1330. (point-at-eol)))
  1331. (save-match-data
  1332. (re-search-forward (rx buffer-start
  1333. (one-or-more hex-digit)))
  1334. (match-string 0))))))
  1335. (magit-show-commit id)))
  1336. (when (boundp 'git-rebase-filename-regexp)
  1337. (add-to-list 'auto-mode-alist
  1338. `(,git-rebase-filename-regexp . text-mode)))
  1339. (when (fboundp 'ggtags-mode)
  1340. (add-hook 'c-mode-common-hook
  1341. 'ggtags-mode)
  1342. (add-hook 'python-mode-hook
  1343. 'ggtags-mode)
  1344. (add-hook 'js-mode-hook
  1345. 'ggtags-mode)
  1346. (add-hook 'scheme-mode-hook
  1347. 'ggtags-mode)
  1348. )
  1349. (when (fboundp 'imenu-list-minor-mode)
  1350. (defvar imenu-list-buffer-name)
  1351. (defun my-imenu-list-toggle ()
  1352. "My 'imenu-list` toggle."
  1353. (interactive)
  1354. (require 'imenu-list)
  1355. (if (eq (window-buffer)
  1356. (get-buffer imenu-list-buffer-name))
  1357. (imenu-list-minor-mode -1)
  1358. (imenu-list-minor-mode 1)))
  1359. ;; (set-variable 'imenu-list-auto-resize t)
  1360. (set-variable 'imenu-list-focus-after-activation t)
  1361. ;; (define-key ctl-x-map (kbd "C-l") 'my-imenu-list-toggle)
  1362. (define-key ctl-x-map (kbd "C-l") 'imenu-list-smart-toggle)
  1363. )
  1364. (add-hook 'emacs-lisp-mode-hook
  1365. (lambda ()
  1366. (setq imenu-generic-expression
  1367. `(("Sections" ";;;\+\n;; \\(.*\\)\n" 1)
  1368. ,@imenu-generic-expression))))
  1369. ;; TODO: Try paraedit http://daregada.blogspot.com/2012/03/paredit.html
  1370. (with-eval-after-load 'compile
  1371. (defvar compilation-filter-start)
  1372. (defvar compilation-error-regexp-alist)
  1373. (eval-and-compile (require 'ansi-color))
  1374. (add-hook 'compilation-filter-hook
  1375. (lambda ()
  1376. (let ((inhibit-read-only t))
  1377. (ansi-color-apply-on-region compilation-filter-start
  1378. (point)))))
  1379. (add-to-list 'compilation-error-regexp-alist
  1380. ;; ansible-lint
  1381. '("^\\([^ \n]+\\):\\([0-9]+\\)$" 1 2))
  1382. (add-to-list 'compilation-error-regexp-alist
  1383. ;; pydocstyle
  1384. '("^\\([^ \n]+\\):\\([0-9]+\\) " 1 2))
  1385. )
  1386. (declare-function company-cancel "company")
  1387. (when (fboundp 'global-company-mode)
  1388. (add-hook 'after-first-visit-hook
  1389. 'global-company-mode))
  1390. (declare-function company-manual-begin "company")
  1391. (with-eval-after-load 'company
  1392. ;; http://qiita.com/sune2/items/b73037f9e85962f5afb7
  1393. ;; https://qiita.com/yuze/items/a145b1e3edb6d0c24cbf
  1394. (set-variable 'company-idle-delay nil)
  1395. (set-variable 'company-minimum-prefix-length 2)
  1396. (set-variable 'company-selection-wrap-around t)
  1397. (defvar company-mode-map)
  1398. (define-key company-mode-map (kbd "C-i") 'company-indent-or-complete-common)
  1399. ;; (with-eval-after-load 'python
  1400. ;; (defvar python-indent-trigger-commands)
  1401. ;; ;; TODO: This disables completion in puthon?
  1402. ;; (add-to-list 'python-indent-trigger-commands
  1403. ;; 'company-indent-or-complete-common))
  1404. (define-key ctl-x-map (kbd "C-i") 'company-complete) ; Originally `indent-rigidly'
  1405. (defvar company-active-map)
  1406. (define-key company-active-map (kbd "C-n") 'company-select-next)
  1407. (define-key company-active-map (kbd "C-p") 'company-select-previous)
  1408. (define-key company-active-map (kbd "C-s") 'company-filter-candidates)
  1409. (define-key company-active-map (kbd "C-i") 'company-complete-selection)
  1410. (define-key company-active-map (kbd "C-f") 'company-complete-selection)
  1411. (defvar company-mode)
  1412. (defvar company-candidates)
  1413. (defvar company-candidates-length)
  1414. ;; (popup-tip "Hello, World!")
  1415. (defun my-company-lighter-current-length ()
  1416. "Get current candidate length."
  1417. (interactive)
  1418. (let ((l nil)
  1419. (inhibit-message t))
  1420. (when (and company-mode
  1421. (not (minibufferp))
  1422. ;; Do nothing when already in company completion
  1423. (not company-candidates))
  1424. ;; FIXME: Somehow it cannto catch errors from ggtags
  1425. (ignore-errors
  1426. ;; (company-auto-begin)
  1427. (company-manual-begin)
  1428. (setq l company-candidates-length)
  1429. (company-cancel)))
  1430. (if l
  1431. (format "[%d]" l)
  1432. "")))
  1433. (defvar company-lighter)
  1434. (set-variable 'company-lighter-base "Cmp")
  1435. ;; (add-to-list 'company-lighter
  1436. ;; '(:eval (my-company-lighter-current-length))
  1437. ;; t)
  1438. ;; This breaks japanese text input
  1439. ;; (set-variable 'my-company-length-popup-tip-timer
  1440. ;; (run-with-idle-timer 0.2 t
  1441. ;; 'my-company-length-popup-tip))
  1442. ;; (current-active-maps)
  1443. ;; (lookup-key)
  1444. '(mapcar (lambda (map)
  1445. (lookup-key map (kbd "C-i")))
  1446. (current-active-maps))
  1447. ;; https://qiita.com/syohex/items/8d21d7422f14e9b53b17
  1448. (set-face-attribute 'company-tooltip nil
  1449. :foreground "black" :background "lightgrey")
  1450. (set-face-attribute 'company-tooltip-common nil
  1451. :foreground "black" :background "lightgrey")
  1452. (set-face-attribute 'company-tooltip-common-selection nil
  1453. :foreground "white" :background "steelblue")
  1454. (set-face-attribute 'company-tooltip-selection nil
  1455. :foreground "black" :background "steelblue")
  1456. (set-face-attribute 'company-preview-common nil
  1457. :background nil :foreground "lightgrey" :underline t)
  1458. (set-face-attribute 'company-scrollbar-fg nil
  1459. :background "orange")
  1460. (set-face-attribute 'company-scrollbar-bg nil
  1461. :background "gray40")
  1462. )
  1463. ;; https://github.com/lunaryorn/flycheck
  1464. ;; TODO: Any way to disable auto check?
  1465. ;; Update flycheck-hooks-alist?
  1466. (when (fboundp 'global-flycheck-mode)
  1467. (add-hook 'after-first-visit-hook
  1468. 'global-flycheck-mode))
  1469. ;; (set-variable 'flycheck-display-errors-delay 2.0)
  1470. ;; (fset 'flycheck-display-error-at-point-soon 'ignore)
  1471. ;; (with-eval-after-load 'flycheck
  1472. ;; (when (fboundp 'flycheck-black-check-setup)
  1473. ;; (flycheck-black-check-setup)))
  1474. (when (fboundp 'ilookup-open-word)
  1475. (define-key ctl-x-map "d" 'ilookup-open-word))
  1476. (set-variable 'ac-ignore-case nil)
  1477. (when (fboundp 'term-run-shell-command)
  1478. (define-key ctl-x-map "t" 'term-run-shell-command))
  1479. (add-to-list 'safe-local-variable-values
  1480. '(encoding utf-8))
  1481. (setq enable-local-variables :safe)
  1482. ;; Detect file type from shebang and set major-mode.
  1483. (add-to-list 'interpreter-mode-alist
  1484. '("python3" . python-mode))
  1485. (add-to-list 'interpreter-mode-alist
  1486. '("python2" . python-mode))
  1487. (with-eval-after-load 'python
  1488. (defvar python-mode-map (make-sparse-keymap))
  1489. (define-key python-mode-map (kbd "C-m") 'newline-and-indent))
  1490. ;; I want to use this, but this breaks normal self-insert-command
  1491. ;; (set-variable 'py-indent-list-style
  1492. ;; 'one-level-to-beginning-of-statement)
  1493. (set-variable 'pydoc-command
  1494. "python3 -m pydoc")
  1495. (declare-function with-venv-advice-add "with-venv")
  1496. (with-eval-after-load 'pydoc
  1497. (when (require 'with-venv nil t)
  1498. (with-venv-advice-add 'pydoc)))
  1499. (set-variable 'flycheck-python-mypy-config '("mypy.ini" ".mypy.ini" "setup.cfg"))
  1500. (set-variable 'flycheck-flake8rc '("setup.cfg" "tox.ini" ".flake8rc"))
  1501. (set-variable 'flycheck-python-pylint-executable "python3")
  1502. (set-variable 'flycheck-python-pycompile-executable "python3")
  1503. (set-variable 'python-indent-guess-indent-offset nil)
  1504. (with-eval-after-load 'blacken
  1505. (when (require 'with-venv nil t)
  1506. (with-venv-advice-add 'blacken-buffer)))
  1507. (with-eval-after-load 'ansible-doc
  1508. (when (require 'with-venv nil t)
  1509. (with-venv-advice-add 'ansible-doc)))
  1510. ;; `isortify-buffer' breaks buffer when it contains japanese text
  1511. (defun my-isortify ()
  1512. (interactive)
  1513. (cl-assert buffer-file-name)
  1514. (cl-assert (not (buffer-modified-p)))
  1515. (call-process "python" ;; PROGRAM
  1516. nil ;; INFILE
  1517. nil ;; DESTINATION
  1518. nil ;; DISPLAY
  1519. "-m" "isort" buffer-file-name)
  1520. (message "isortify done")
  1521. (revert-buffer nil t))
  1522. (when (fboundp 'with-venv-advice-add)
  1523. ;; TODO: Lazy load with-venv
  1524. (with-venv-advice-add 'my-isortify))
  1525. ;; https://github.com/lunaryorn/old-emacs-configuration/blob/master/lisp/flycheck-virtualenv.el
  1526. (defun my-set-venv-flycheck-executable-find ()
  1527. "Set flycheck executabie find."
  1528. (interactive)
  1529. (when (fboundp 'with-venv)
  1530. (set-variable 'flycheck-executable-find
  1531. '(lambda (e)
  1532. (with-venv
  1533. (executable-find e)))
  1534. t)))
  1535. (defun my-update-flycheck-flake8-error-level-alist ()
  1536. "Update `flycheck-flake8-error-level-alist'."
  1537. (defvar flycheck-flake8-error-level-alist)
  1538. ;; (add-to-list 'flycheck-flake8-error-level-alist
  1539. ;; '("^D.*$" . warning))
  1540. (set-variable 'flycheck-flake8-error-level-alist
  1541. nil)
  1542. )
  1543. (add-hook 'python-mode-hook
  1544. 'my-set-venv-flycheck-executable-find)
  1545. (add-hook 'python-mode-hook
  1546. 'my-update-flycheck-flake8-error-level-alist)
  1547. (when (fboundp 'with-venv-info-mode)
  1548. (add-hook 'python-mode-hook
  1549. 'with-venv-info-mode))
  1550. ;; Run multiple chekcers
  1551. ;; https://github.com/flycheck/flycheck/issues/186
  1552. (add-hook 'python-mode-hook
  1553. (lambda ()
  1554. ;; Currently on python-mode eldoc-mode sometimes print
  1555. ;; wired message on "from" keyword:
  1556. ;;var from = require("./from")
  1557. (eldoc-mode -1)))
  1558. ;; http://fukuyama.co/foreign-regexp
  1559. '(and (require 'foreign-regexp nil t)
  1560. (progn
  1561. (setq foreign-regexp/regexp-type 'perl)
  1562. '(setq reb-re-syntax 'foreign-regexp)
  1563. ))
  1564. (with-eval-after-load 'sql
  1565. (require 'sql-indent nil t))
  1566. (add-to-list 'auto-mode-alist
  1567. '("\\.hql\\'" . sql-mode))
  1568. (when (fboundp 'git-command)
  1569. (define-key ctl-x-map "g" 'git-command))
  1570. (when (fboundp 'gited-list)
  1571. (defalias 'gited 'gited-list))
  1572. (when (fboundp 'global-git-commit-mode)
  1573. (add-hook 'after-first-visit-hook
  1574. 'global-git-commit-mode)
  1575. (add-hook 'after-first-visit-hook
  1576. 'git-commit-setup-check-buffer))
  1577. (with-eval-after-load 'git-commit
  1578. (add-hook 'git-commit-setup-hook
  1579. 'turn-off-auto-fill t))
  1580. (with-eval-after-load 'rst
  1581. (defvar rst-mode-map)
  1582. (define-key rst-mode-map (kbd "C-m") 'newline-and-indent))
  1583. (with-eval-after-load 'jdee
  1584. (add-hook 'jdee-mode-hook
  1585. (lambda ()
  1586. (make-local-variable 'global-mode-string)
  1587. (add-to-list 'global-mode-string
  1588. mode-line-position))))
  1589. ;; Cannot enable error thrown. Why???
  1590. ;; https://github.com/m0smith/malabar-mode#Installation
  1591. ;; (when (require 'malabar-mode nil t)
  1592. ;; (add-to-list 'load-path
  1593. ;; (expand-file-name (concat user-emacs-directory "/cedet")))
  1594. ;; (require 'cedet-devel-load nil t)
  1595. ;; (eval-after-init (activate-malabar-mode)))
  1596. (with-eval-after-load 'make-mode
  1597. (defvar makefile-mode-map (make-sparse-keymap))
  1598. (define-key makefile-mode-map (kbd "C-m") 'newline-and-indent)
  1599. ;; this functions is set in write-file-functions, i cannot find any
  1600. ;; good way to remove this.
  1601. (fset 'makefile-warn-suspicious-lines 'ignore))
  1602. (with-eval-after-load 'verilog-mode
  1603. (defvar verilog-mode-map (make-sparse-keymap))
  1604. (define-key verilog-mode-map ";" 'self-insert-command))
  1605. (setq diff-switches "-u")
  1606. (autoload 'diff-goto-source "diff-mode" nil t)
  1607. (with-eval-after-load 'diff-mode
  1608. ;; (when (and (eq major-mode
  1609. ;; 'diff-mode)
  1610. ;; (not buffer-file-name))
  1611. ;; ;; do not pass when major-mode is derived mode of diff-mode
  1612. ;; (view-mode 1))
  1613. (set-face-attribute 'diff-header nil
  1614. :foreground nil
  1615. :background nil
  1616. :weight 'bold)
  1617. (set-face-attribute 'diff-file-header nil
  1618. :foreground nil
  1619. :background nil
  1620. :weight 'bold)
  1621. (set-face-foreground 'diff-index "blue")
  1622. (set-face-attribute 'diff-hunk-header nil
  1623. :foreground "cyan"
  1624. :weight 'normal)
  1625. (set-face-attribute 'diff-context nil
  1626. ;; :foreground "white"
  1627. :foreground nil
  1628. :weight 'normal)
  1629. (set-face-foreground 'diff-removed "red")
  1630. (set-face-foreground 'diff-added "green")
  1631. (set-face-background 'diff-removed nil)
  1632. (set-face-background 'diff-added nil)
  1633. (set-face-attribute 'diff-changed nil
  1634. :foreground "magenta"
  1635. :weight 'normal)
  1636. (set-face-attribute 'diff-refine-changed nil
  1637. :foreground nil
  1638. :background nil
  1639. :weight 'bold
  1640. :inverse-video t)
  1641. ;; Annoying !
  1642. ;;(diff-auto-refine-mode)
  1643. )
  1644. ;; (ffap-bindings)
  1645. (set-variable 'browse-url-browser-function
  1646. 'eww-browse-url)
  1647. (set-variable 'sh-here-document-word "__EOC__")
  1648. (with-eval-after-load 'adoc-mode
  1649. (defvar adoc-mode-map)
  1650. (define-key adoc-mode-map (kbd "C-m") 'newline))
  1651. (when (fboundp 'adoc-mode)
  1652. (setq auto-mode-alist
  1653. `(("\\.adoc\\'" . adoc-mode)
  1654. ("\\.asciidoc\\'" . adoc-mode)
  1655. ,@auto-mode-alist)))
  1656. (with-eval-after-load 'markup-faces
  1657. ;; Is this too match ?
  1658. (set-face-foreground 'markup-meta-face
  1659. "color-245")
  1660. (set-face-foreground 'markup-meta-hide-face
  1661. "color-245")
  1662. )
  1663. ;; TODO: check if this is required
  1664. (with-eval-after-load 'groovy-mode
  1665. (defvar groovy-mode-map)
  1666. (define-key groovy-mode-map "(" 'self-insert-command)
  1667. (define-key groovy-mode-map ")" 'self-insert-command)
  1668. (define-key groovy-mode-map (kbd "C-m") 'newline-and-indent)
  1669. )
  1670. (when (fboundp 'groovy-mode)
  1671. (add-to-list 'auto-mode-alist
  1672. '("build\\.gradle\\'" . groovy-mode)))
  1673. (add-to-list 'auto-mode-alist
  1674. '("\\.gawk\\'" . awk-mode))
  1675. (with-eval-after-load 'yaml-mode
  1676. (defvar yaml-mode-map (make-sparse-keymap))
  1677. (define-key yaml-mode-map (kbd "C-m") 'newline))
  1678. (with-eval-after-load 'html-mode
  1679. (defvar html-mode-map (make-sparse-keymap))
  1680. (define-key html-mode-map (kbd "C-m") 'reindent-then-newline-and-indent))
  1681. (with-eval-after-load 'text-mode
  1682. (define-key text-mode-map (kbd "C-m") 'newline))
  1683. (with-eval-after-load 'info
  1684. (defvar Info-additional-directory-list)
  1685. (dolist (dir (directory-files (concat user-emacs-directory
  1686. "info")
  1687. t
  1688. "^[^.].*"))
  1689. (when (file-directory-p dir)
  1690. (add-to-list 'Info-additional-directory-list
  1691. dir)))
  1692. (let ((dir (expand-file-name "~/.brew/share/info")))
  1693. (when (file-directory-p dir)
  1694. (add-to-list 'Info-additional-directory-list
  1695. dir))))
  1696. (with-eval-after-load 'apropos
  1697. (defvar apropos-mode-map (make-sparse-keymap))
  1698. (define-key apropos-mode-map "n" 'next-line)
  1699. (define-key apropos-mode-map "p" 'previous-line))
  1700. ;; `isearch' library does not call `provide' so cannot use with-eval-after-load
  1701. ;; (define-key isearch-mode-map
  1702. ;; (kbd "C-j") 'isearch-other-control-char)
  1703. ;; (define-key isearch-mode-map
  1704. ;; (kbd "C-k") 'isearch-other-control-char)
  1705. ;; (define-key isearch-mode-map
  1706. ;; (kbd "C-h") 'isearch-other-control-char)
  1707. (define-key isearch-mode-map (kbd "C-h") 'isearch-del-char)
  1708. (define-key isearch-mode-map (kbd "M-r")
  1709. 'isearch-query-replace-regexp)
  1710. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  1711. (setq lazy-highlight-cleanup nil)
  1712. ;; face for isearch highlighing
  1713. (set-face-attribute 'lazy-highlight
  1714. nil
  1715. :foreground `unspecified
  1716. :background `unspecified
  1717. :underline t
  1718. ;; :weight `bold
  1719. )
  1720. (add-hook 'outline-mode-hook
  1721. (lambda ()
  1722. (when (string-match "\\.md\\'" buffer-file-name)
  1723. (setq-local outline-regexp "#+ "))))
  1724. (add-hook 'outline-mode-hook
  1725. 'outline-show-all)
  1726. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  1727. (with-eval-after-load 'markdown-mode
  1728. (defvar gfm-mode-map)
  1729. (define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline)
  1730. (define-key gfm-mode-map "`" nil) ;; markdown-electric-backquote
  1731. )
  1732. (when (fboundp 'gfm-mode)
  1733. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
  1734. (add-hook 'markdown-mode-hook
  1735. 'outline-minor-mode)
  1736. (add-hook 'markdown-mode-hook
  1737. (lambda ()
  1738. (setq-local comment-start ";")))
  1739. )
  1740. ;; http://keisanbutsuriya.hateblo.jp/entry/2015/02/10/152543
  1741. ;; M-$ to ispell word
  1742. ;; M-x flyspell-buffer to highlight all suspicious words
  1743. (when (executable-find "aspell")
  1744. (set-variable 'ispell-program-name "aspell")
  1745. (set-variable 'ispell-extra-args '("--lang=en_US")))
  1746. (with-eval-after-load 'ispell
  1747. (add-to-list 'ispell-skip-region-alist '("[^\000-\377]+")))
  1748. (when (fboundp 'flyspell-mode)
  1749. (add-hook 'text-mode-hook
  1750. 'flyspell-mode))
  1751. (when (fboundp 'flyspell-prog-mode)
  1752. (add-hook 'prog-mode-hook
  1753. 'flyspell-prog-mode))
  1754. ;; c-mode
  1755. ;; http://www.emacswiki.org/emacs/IndentingC
  1756. ;; http://en.wikipedia.org/wiki/Indent_style
  1757. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  1758. ;; http://seesaawiki.jp/whiteflare503/d/Emacs%20%a5%a4%a5%f3%a5%c7%a5%f3%a5%c8
  1759. (with-eval-after-load 'cc-vars
  1760. (defvar c-default-style nil)
  1761. (add-to-list 'c-default-style
  1762. '(c-mode . "k&r"))
  1763. (add-to-list 'c-default-style
  1764. '(c++-mode . "k&r")))
  1765. (with-eval-after-load 'js2-mode
  1766. ;; currently do not use js2-mode
  1767. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  1768. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  1769. ;; (defvar js2-mode-map (make-sparse-keymap))
  1770. ;; (define-key js2-mode-map (kbd "C-m") (lambda ()
  1771. ;; (interactive)
  1772. ;; (js2-enter-key)
  1773. ;; (indent-for-tab-command)))
  1774. ;; (add-hook (kill-local-variable 'before-save-hook)
  1775. ;; 'js2-before-save)
  1776. ;; (add-hook 'before-save-hook
  1777. ;; 'my-indent-buffer
  1778. ;; nil
  1779. ;; t)
  1780. )
  1781. (add-to-list 'interpreter-mode-alist
  1782. '("node" . js-mode))
  1783. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  1784. (with-eval-after-load 'uniquify
  1785. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  1786. (setq uniquify-ignore-buffers-re "*[^*]+*")
  1787. (setq uniquify-min-dir-content 1))
  1788. (with-eval-after-load 'view
  1789. (defvar view-mode-map (make-sparse-keymap))
  1790. (define-key view-mode-map "j" 'scroll-up-line)
  1791. (define-key view-mode-map "k" 'scroll-down-line)
  1792. (define-key view-mode-map "v" 'toggle-read-only)
  1793. (define-key view-mode-map "q" 'bury-buffer)
  1794. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  1795. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  1796. ;; (define-key view-mode-map
  1797. ;; "n" 'nonincremental-repeat-search-forward)
  1798. ;; (define-key view-mode-map
  1799. ;; "N" 'nonincremental-repeat-search-backward)
  1800. ;; N conflicts with git-walktree
  1801. ;; (define-key view-mode-map "/" 'isearch-forward-regexp)
  1802. ;; (define-key view-mode-map "?" 'isearch-backward-regexp)
  1803. ;; (define-key view-mode-map "n" 'isearch-repeat-forward)
  1804. ;; (define-key view-mode-map "N" 'isearch-repeat-backward)
  1805. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point))
  1806. (global-set-key "\M-r" 'view-mode)
  1807. ;; (setq view-read-only t)
  1808. (with-eval-after-load 'term
  1809. (defvar term-raw-map (make-sparse-keymap))
  1810. (define-key term-raw-map (kbd "C-x")
  1811. (lookup-key (current-global-map)
  1812. (kbd "C-x"))))
  1813. (add-hook 'term-mode-hook
  1814. (lambda ()
  1815. ;; Stop current line highlighting
  1816. (set-variable 'hl-line-range-function (lambda () '(0 . 0)) t)
  1817. (set-variable 'scroll-margin 0 t)
  1818. ))
  1819. (set-variable 'term-buffer-maximum-size 20480)
  1820. (set-variable 'term-suppress-hard-newline t)
  1821. (add-hook 'Man-mode-hook
  1822. (lambda ()
  1823. (view-mode 1)
  1824. (setq truncate-lines nil)))
  1825. (set-variable 'Man-notify-method (if window-system
  1826. 'newframe
  1827. 'aggressive))
  1828. (set-variable 'woman-cache-filename (expand-file-name (concat user-emacs-directory
  1829. "woman_cache.el")))
  1830. ;; not work because man.el will be loaded when man called
  1831. (defalias 'man 'woman)
  1832. (add-to-list 'auto-mode-alist
  1833. '("/tox\\.ini\\'" . conf-unix-mode))
  1834. (add-to-list 'auto-mode-alist
  1835. '("/setup\\.cfg\\'" . conf-unix-mode))
  1836. (when (fboundp 'toml-mode)
  1837. (add-to-list 'auto-mode-alist
  1838. '("/tox\\.ini\\'" . toml-mode))
  1839. (add-to-list 'auto-mode-alist
  1840. '("/setup\\.cfg\\'" . toml-mode))
  1841. (add-to-list 'auto-mode-alist
  1842. '("/Pipfile\\'" . toml-mode))
  1843. (add-to-list 'auto-mode-alist
  1844. '("/poetry\\.lock\\'" . toml-mode))
  1845. )
  1846. (when (fboundp 'json-mode)
  1847. (add-to-list 'auto-mode-alist
  1848. '("/Pipfile\\.lock\\'" . json-mode)))
  1849. (add-hook 'go-mode-hook
  1850. (lambda()
  1851. (defvar go-mode-map)
  1852. (add-hook 'before-save-hook' 'gofmt-before-save nil t)
  1853. (define-key go-mode-map (kbd "M-.") 'godef-jump)))
  1854. (when (fboundp 'k8s-mode)
  1855. (add-to-list 'auto-mode-alist
  1856. '("\\.k8s\\'" . k8s-mode)))
  1857. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1858. ;; buffers
  1859. (defvar bs-configurations)
  1860. (declare-function bs-set-configuration "bs")
  1861. (declare-function bs-refresh "bs")
  1862. (declare-function bs-message-without-log "bs")
  1863. (declare-function bs--current-config-message "bs")
  1864. (with-eval-after-load 'bs
  1865. (add-to-list 'bs-configurations
  1866. '("specials" "^\\*" nil ".*" nil nil))
  1867. (add-to-list 'bs-configurations
  1868. '("files-and-specials" "^\\*" buffer-file-name ".*" nil nil))
  1869. (defvar bs-mode-map)
  1870. (defvar bs-current-configuration)
  1871. (define-key bs-mode-map (kbd "t")
  1872. ;; TODO: fix toggle feature
  1873. (lambda ()
  1874. (interactive)
  1875. (if (string= "specials"
  1876. bs-current-configuration)
  1877. (bs-set-configuration "files")
  1878. (bs-set-configuration "specials"))
  1879. (bs-refresh)
  1880. (bs-message-without-log "%s"
  1881. (bs--current-config-message))))
  1882. ;; (setq bs-configurations (list
  1883. ;; '("processes" nil get-buffer-process ".*" nil nil)
  1884. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  1885. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  1886. )
  1887. (when (fboundp 'bs-show)
  1888. (defalias 'list-buffers 'bs-show)
  1889. (set-variable 'bs-default-configuration "files-and-specials")
  1890. (set-variable 'bs-default-sort-name "by nothing")
  1891. (add-hook 'bs-mode-hook
  1892. (lambda ()
  1893. (setq-local scroll-margin 0)
  1894. (setq-local header-line-format nil)
  1895. (setq-local mode-line-format nil)
  1896. )))
  1897. ;;(iswitchb-mode 1)
  1898. (icomplete-mode)
  1899. (defun iswitchb-buffer-display-other-window ()
  1900. "Do iswitchb in other window."
  1901. (interactive)
  1902. (let ((iswitchb-default-method 'display))
  1903. (call-interactively 'iswitchb-buffer)))
  1904. ;; buffer killing
  1905. ;; (defun my-delete-window-killing-buffer () nil)
  1906. (defun my-query-kill-current-buffer ()
  1907. "Interactively kill current buffer."
  1908. (interactive)
  1909. (if (y-or-n-p (concat "kill current buffer? :"))
  1910. (kill-buffer (current-buffer))))
  1911. (defun my-force-query-kill-current-buffer ()
  1912. "Interactively kill current buffer."
  1913. (interactive)
  1914. (when (y-or-n-p (concat "kill current buffer? :"))
  1915. (let ((kill-buffer-hook nil)
  1916. (kill-buffer-query-functions nil))
  1917. (kill-buffer (current-buffer)))))
  1918. ;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
  1919. ;; Originally C-x C-k -> kmacro-keymap
  1920. ;; (global-set-key "\C-x\C-k" 'kmacro-keymap)
  1921. (global-set-key (kbd "C-x C-k") 'my-query-kill-current-buffer)
  1922. (substitute-key-definition 'kill-buffer
  1923. 'my-query-kill-current-buffer
  1924. global-map)
  1925. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1926. ;; dired
  1927. (defun my-file-head (filename &optional n)
  1928. "Return list of first N lines of file FILENAME."
  1929. ;; TODO: Fix for janapese text
  1930. ;; TODO: Fix for short text
  1931. (let ((num (or n 10))
  1932. (size 100)
  1933. (beg 0)
  1934. (end 0)
  1935. (result '())
  1936. (read -1))
  1937. (with-temp-buffer
  1938. (erase-buffer)
  1939. (while (or (<= (count-lines (point-min)
  1940. (point-max))
  1941. num)
  1942. (eq read 0))
  1943. (setq end (+ beg size))
  1944. (setq read (nth 1 (insert-file-contents-literally filename
  1945. nil
  1946. beg
  1947. end)))
  1948. (goto-char (point-max))
  1949. (setq beg (+ beg size)))
  1950. (goto-char (point-min))
  1951. (while (< (length result) num)
  1952. (let ((start (point)))
  1953. (forward-line 1)
  1954. (setq result
  1955. `(,@result ,(buffer-substring-no-properties start
  1956. (point))))))
  1957. result
  1958. ;; (buffer-substring-no-properties (point-min)
  1959. ;; (progn
  1960. ;; (forward-line num)
  1961. ;; (point)))
  1962. )))
  1963. ;; (apply 'concat (my-file-head "./shrc" 10)
  1964. (declare-function dired-get-filename "dired" t)
  1965. (defun my-dired-echo-file-head (arg)
  1966. "Echo head of current file.
  1967. ARG is num to show, or defaults to 7."
  1968. (interactive "P")
  1969. (let ((f (dired-get-filename)))
  1970. (message "%s"
  1971. (apply 'concat
  1972. (my-file-head f
  1973. 7)))))
  1974. (declare-function dired-get-marked-files "dired")
  1975. (defun my-dired-diff ()
  1976. "Show diff of marked file and file of current line."
  1977. (interactive)
  1978. (let ((files (dired-get-marked-files nil nil nil t)))
  1979. (if (eq (car files)
  1980. t)
  1981. (diff (cadr files) (dired-get-filename))
  1982. (message "One file must be marked!"))))
  1983. (defun dired-get-file-info ()
  1984. "Print information of current line file."
  1985. (interactive)
  1986. (let* ((file (dired-get-filename t))
  1987. (quoted (shell-quote-argument file)))
  1988. (if (file-directory-p file)
  1989. (progn
  1990. (message "Calculating disk usage...")
  1991. (let ((du (or (executable-find "gdu")
  1992. (executable-find "du")
  1993. (error "du not found"))))
  1994. (shell-command (concat du
  1995. " -hsD "
  1996. quoted))))
  1997. (shell-command (concat "file "
  1998. quoted)))))
  1999. (defun my-dired-scroll-up ()
  2000. "Scroll up."
  2001. (interactive)
  2002. (my-dired-previous-line (- (window-height) 1)))
  2003. (defun my-dired-scroll-down ()
  2004. "Scroll down."
  2005. (interactive)
  2006. (my-dired-next-line (- (window-height) 1)))
  2007. ;; (defun my-dired-forward-line (arg)
  2008. ;; ""
  2009. ;; (interactive "p"))
  2010. (declare-function dired-get-subdir "dired")
  2011. (declare-function dired-move-to-filename "dired")
  2012. (defun my-dired-previous-line (arg)
  2013. "Move ARG lines up."
  2014. (interactive "p")
  2015. (if (> arg 0)
  2016. (progn
  2017. (if (eq (line-number-at-pos)
  2018. 1)
  2019. (goto-char (point-max))
  2020. (forward-line -1))
  2021. (my-dired-previous-line (if (or (dired-get-filename nil t)
  2022. (dired-get-subdir))
  2023. (- arg 1)
  2024. arg)))
  2025. (dired-move-to-filename)))
  2026. (defun my-dired-next-line (arg)
  2027. "Move ARG lines down."
  2028. (interactive "p")
  2029. (if (> arg 0)
  2030. (progn
  2031. (if (eq (point)
  2032. (point-max))
  2033. (goto-char (point-min))
  2034. (forward-line 1))
  2035. (my-dired-next-line (if (or (dired-get-filename nil t)
  2036. (dired-get-subdir))
  2037. (- arg 1)
  2038. arg)))
  2039. (dired-move-to-filename)))
  2040. (defun my-tramp-remote-find-file (f)
  2041. "Open F."
  2042. (interactive (list (read-file-name "My Find File Tramp: "
  2043. "/scp:"
  2044. nil ;; "/scp:"
  2045. (confirm-nonexistent-file-or-buffer))))
  2046. (find-file f))
  2047. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  2048. (if (eq window-system 'mac)
  2049. (setq dired-listing-switches "-lhF")
  2050. (setq dired-listing-switches "-lhF --time-style=long-iso")
  2051. )
  2052. (setq dired-listing-switches "-lhF")
  2053. ;; when using dired-find-alternate-file
  2054. ;; reuse current dired buffer for the file to open
  2055. ;; (put 'dired-find-alternate-file 'disabled nil)
  2056. (set-variable 'dired-ls-F-marks-symlinks t)
  2057. (set-variable 'ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  2058. (set-variable 'ls-lisp-dirs-first t)
  2059. (set-variable 'ls-lisp-use-localized-time-format t)
  2060. (set-variable 'ls-lisp-format-time-list
  2061. '("%Y-%m-%d %H:%M"
  2062. "%Y-%m-%d "))
  2063. (set-variable 'dired-dwim-target t)
  2064. (set-variable 'dired-isearch-filenames t)
  2065. (set-variable 'dired-hide-details-hide-symlink-targets nil)
  2066. (set-variable 'dired-hide-details-hide-information-lines nil)
  2067. (set-variable 'dired-deletion-confirmer 'y-or-n-p)
  2068. (set-variable 'dired-recursive-deletes 'always)
  2069. ;; (add-hook 'dired-after-readin-hook
  2070. ;; 'my-replace-nasi-none)
  2071. (with-eval-after-load 'dired
  2072. (require 'ls-lisp nil t)
  2073. (defvar dired-mode-map (make-sparse-keymap))
  2074. ;; dired-do-chgrp sometimes cause system hung
  2075. (define-key dired-mode-map "G" 'ignore)
  2076. (define-key dired-mode-map "e" 'wdired-change-to-wdired-mode)
  2077. (define-key dired-mode-map "i" 'dired-get-file-info)
  2078. ;; (define-key dired-mode-map "f" 'find-file)
  2079. (define-key dired-mode-map "f" 'my-fzf-or-find-file)
  2080. (define-key dired-mode-map "z" 'fzf)
  2081. (define-key dired-mode-map "!" 'shell-command)
  2082. (define-key dired-mode-map "&" 'async-shell-command)
  2083. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  2084. (define-key dired-mode-map "=" 'my-dired-diff)
  2085. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  2086. (define-key dired-mode-map "b" 'gtkbm)
  2087. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  2088. (define-key dired-mode-map (kbd "TAB") 'other-window)
  2089. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  2090. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  2091. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  2092. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  2093. (substitute-key-definition 'dired-next-line
  2094. 'my-dired-next-line
  2095. dired-mode-map)
  2096. (substitute-key-definition 'dired-previous-line
  2097. 'my-dired-previous-line
  2098. dired-mode-map)
  2099. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  2100. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  2101. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  2102. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  2103. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  2104. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  2105. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  2106. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  2107. (add-hook 'dired-mode-hook
  2108. (lambda ()
  2109. (when (fboundp 'dired-hide-details-mode)
  2110. (dired-hide-details-mode t)
  2111. (local-set-key "l" 'dired-hide-details-mode))
  2112. (let ((file "._Icon\015"))
  2113. (when nil
  2114. '(file-readable-p file)
  2115. (delete-file file)))))
  2116. (when (fboundp 'pack-dired-dwim)
  2117. (with-eval-after-load 'dired
  2118. (define-key dired-mode-map "P" 'pack-dired-dwim)))
  2119. (when (fboundp 'dired-list-all-mode)
  2120. (setq dired-listing-switches "-lhF")
  2121. (with-eval-after-load 'dired
  2122. (define-key dired-mode-map "a" 'dired-list-all-mode))))
  2123. (when (fboundp 'dired-filter-mode)
  2124. (add-hook 'dired-mode-hook
  2125. 'dired-filter-mode))
  2126. (set-variable 'dired-filter-stack nil)
  2127. ;; Currently disabled in favor of dired-from-git-ls-files
  2128. ;; (define-key ctl-x-map "f" 'find-dired)
  2129. (defvar my-dired-git-ls-files-history
  2130. "History for `my-dired-git-ls-files'." nil)
  2131. (defun my-dired-git-ls-files (arg)
  2132. "Dired from git ls-files."
  2133. (interactive (list
  2134. (read-shell-command "git ls-files: "
  2135. "git ls-files -z ")))
  2136. (pop-to-buffer-same-window
  2137. (dired-noselect `(,default-directory
  2138. ,@(split-string (shell-command-to-string arg)
  2139. "\0" t))
  2140. ""))
  2141. )
  2142. (define-key ctl-x-map (kbd "G") 'my-dired-git-ls-files)
  2143. (with-eval-after-load 'dired
  2144. (defvar dired-mode-map (make-sparse-keymap))
  2145. (define-key dired-mode-map "G" 'my-dired-git-ls-files))
  2146. (with-eval-after-load 'pack
  2147. (set-variable 'pack-silence
  2148. t)
  2149. (defvar pack-program-alist)
  2150. (add-to-list 'pack-program-alist
  2151. '("\\.txz\\'" :pack "tar -cJf" :unpack "tar -xf"))
  2152. (when (executable-find "aunpack")
  2153. (add-to-list 'pack-program-alist
  2154. ' ("\\.zip\\'"
  2155. :pack ("zip" "-r" archive sources)
  2156. :pack-append ("zip" "-r" archive sources)
  2157. :unpack ("aunpack" archive))))
  2158. )
  2159. ;; dired-k
  2160. ;; Current HEAD of original repo is broken
  2161. ;; https://github.com/syohex/emacs-dired-k/issues/45
  2162. (declare-function dired-k-no-revert "dired-k")
  2163. (when (fboundp 'dired-k)
  2164. (set-variable 'dired-k-style 'git)
  2165. ;; What is the best way of doing this?
  2166. (with-eval-after-load 'dired-k
  2167. (fset 'dired-k--highlight-by-file-attribyte 'ignore))
  2168. ;; (set-variable 'dired-k-size-colors
  2169. ;; `((,most-positive-fixnum)))
  2170. ;; (set-variable 'dired-k-date-colors
  2171. ;; `((,most-positive-fixnum)))
  2172. (let* ((pkg (cadr (assq 'dired-k
  2173. package-alist)))
  2174. (version-str (package-version-join (package-desc-version pkg))))
  2175. ;; Currently dired-k HEAD of original repository is broken so do not use that
  2176. (when (string= version-str
  2177. "20171017.1228")
  2178. ;; always execute dired-k when dired buffer is opened and reverted
  2179. (add-hook 'dired-after-readin-hook #'dired-k-no-revert)
  2180. ;; This still create index.lock files...........................
  2181. ;; (add-hook 'switch-buffer-functions
  2182. ;; (lambda (prev cur)
  2183. ;; (when (derived-mode-p 'dired-mode)
  2184. ;; (dired-k-no-revert))))
  2185. )))
  2186. ;; (when (eval-and-compile (require 'dired-rainbow nil t))
  2187. ;; (dired-rainbow-define gtags "brightblack" "GTAGS"))
  2188. ;; ?
  2189. ;; (set-variable 'dired-omit-files
  2190. ;; (rx (or (regexp "^\\.?#")
  2191. ;; (regexp "^\\.$")
  2192. ;; (regexp "^\\.\\.$")
  2193. ;; (regexp "^GPATH$")
  2194. ;; (regexp "^GRTAGS$")
  2195. ;; (regexp "^GTAGS$")
  2196. ;; )))
  2197. (with-eval-after-load 'diredfl
  2198. (set-face-foreground 'diredfl-file-name nil)
  2199. )
  2200. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2201. ;; misc funcs
  2202. (define-key ctl-x-map "T" 'git-worktree)
  2203. (define-key ctl-x-map "W" 'git-walktree)
  2204. (when (fboundp 'browse-url-default-macosx-browser)
  2205. (defalias 'browse-osx 'browse-url-default-macosx-browser))
  2206. (defalias 'qcalc 'quick-calc)
  2207. (defun memo (&optional dir)
  2208. "Open memo.txt in DIR."
  2209. (interactive)
  2210. (pop-to-buffer (find-file-noselect (concat (if dir
  2211. (file-name-as-directory dir)
  2212. "")
  2213. "memo.txt"))))
  2214. ;; TODO: remember-projectile
  2215. (set (defvar my-privnotes-path nil
  2216. "My privnotes repository path.")
  2217. (expand-file-name "~/my/privnotes"))
  2218. (defun my-privnotes-readme (dir)
  2219. "Open my privnotes DIR."
  2220. (interactive (list
  2221. (read-file-name "Privnotes: "
  2222. (expand-file-name (format-time-string "%Y%m%d_")
  2223. my-privnotes-path))))
  2224. (let ((path (expand-file-name "README.md" dir)))
  2225. (with-current-buffer (find-file path)
  2226. (unless (file-exists-p path)
  2227. (insert (file-name-base dir)
  2228. "\n"
  2229. "=======\n"
  2230. "\n\n")))))
  2231. (define-key ctl-x-map "p" 'my-privnotes-readme)
  2232. (set (defvar my-rgrep-alist nil
  2233. "Alist of rgrep command.
  2234. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  2235. condition to choose COMMAND when evaluated.")
  2236. `(
  2237. ;; ripgrep
  2238. ("rg"
  2239. (executable-find "rg")
  2240. "rg -nH --no-heading --hidden --glob '!.git/' --smart-case -M 1280 ")
  2241. ;; git grep
  2242. ("gitgrep"
  2243. (eq 0
  2244. (shell-command "git rev-parse --git-dir"))
  2245. "git --no-pager grep -nH -e ")
  2246. ;; sift
  2247. ("sift"
  2248. (executable-find "sift")
  2249. ("sift --binary-skip --filename --line-number --git --smart-case "))
  2250. ;; the silver searcher
  2251. ("ag"
  2252. (executable-find "ag")
  2253. "ag --nogroup --nopager --filename ")
  2254. ;; ack
  2255. ("ack"
  2256. (executable-find "ack")
  2257. "ack --nogroup --nopager --with-filename ")
  2258. ;; gnu global
  2259. ("global"
  2260. (and (require 'ggtags nil t)
  2261. (executable-find "global")
  2262. (ggtags-current-project-root))
  2263. "global --result grep ")
  2264. ;; grep
  2265. ("grep"
  2266. t
  2267. ,(concat "find . "
  2268. "-path '*/.git' -prune -o "
  2269. "-path '*/.svn' -prune -o "
  2270. "-type f -print0 | "
  2271. "xargs -0 grep -nH -e "))
  2272. )
  2273. )
  2274. (defvar my-rgrep-default nil
  2275. "Default command name for my-rgrep.")
  2276. (defun my-rgrep-grep-command (&optional name alist)
  2277. "Return recursive grep command for current directory or nil.
  2278. If NAME is given, use that without testing.
  2279. Commands are searched from ALIST."
  2280. (if alist
  2281. (if name
  2282. ;; if name is given search that from alist and return the command
  2283. (nth 2 (assoc name
  2284. alist))
  2285. ;; if name is not given try test in 1th elem
  2286. (let ((car (car alist))
  2287. (cdr (cdr alist)))
  2288. (if (eval (nth 1 car))
  2289. ;; if the condition is true return the command
  2290. (nth 2 car)
  2291. ;; try next one
  2292. (and cdr
  2293. (my-rgrep-grep-command name cdr)))))
  2294. ;; if alist is not given set default value
  2295. (my-rgrep-grep-command name my-rgrep-alist)))
  2296. (declare-function projectile-project-p "projectile")
  2297. (declare-function projectile-with-default-dir "projectile")
  2298. (declare-function projectile-project-root "projectile")
  2299. (defun my-rgrep (command-args)
  2300. "My recursive grep. Run COMMAND-ARGS.
  2301. If prefix argument is given, use current symbol as default search target
  2302. and search from projectile root (if projectile is available)."
  2303. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  2304. nil)))
  2305. (if cmd
  2306. (list (read-shell-command "grep command: "
  2307. (concat cmd
  2308. (if current-prefix-arg
  2309. (thing-at-point 'symbol t)
  2310. ""))
  2311. 'grep-find-history))
  2312. (error "My-Rgrep: Command for rgrep not found")
  2313. )))
  2314. (if (and current-prefix-arg
  2315. (eval-and-compile (require 'projectile nil t))
  2316. (projectile-project-p))
  2317. (projectile-with-default-dir (projectile-project-root)
  2318. (compilation-start command-args
  2319. 'grep-mode))
  2320. (compilation-start command-args
  2321. 'grep-mode)))
  2322. (defun my-rgrep-thing-at-point-projectile-root ()
  2323. "My recursive grep to find thing at point from project root."
  2324. (interactive)
  2325. (let* ((cmd (my-rgrep-grep-command my-rgrep-default
  2326. nil))
  2327. (command-args
  2328. (if cmd
  2329. (concat cmd
  2330. (or (thing-at-point 'symbol t)
  2331. (error "No symbol at point")))
  2332. (error "My-Rgrep: Command for rgrep not found"))))
  2333. (if (eval-and-compile (require 'projectile nil t))
  2334. (projectile-with-default-dir (or (projectile-project-root)
  2335. default-directory)
  2336. (compilation-start command-args
  2337. 'grep-mode))
  2338. (compilation-start command-args
  2339. 'grep-mode))))
  2340. (defmacro define-my-rgrep (name)
  2341. "Define rgrep for NAME."
  2342. `(defun ,(intern (concat "my-rgrep-"
  2343. name)) ()
  2344. ,(format "My recursive grep by %s."
  2345. name)
  2346. (interactive)
  2347. (let ((my-rgrep-default ,name))
  2348. (if (called-interactively-p 'any)
  2349. (call-interactively 'my-rgrep)
  2350. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  2351. )
  2352. (define-my-rgrep "ack")
  2353. (define-my-rgrep "ag")
  2354. (define-my-rgrep "rg")
  2355. (define-my-rgrep "sift")
  2356. (define-my-rgrep "gitgrep")
  2357. (define-my-rgrep "grep")
  2358. (define-my-rgrep "global")
  2359. (define-key ctl-x-map "s" 'my-rgrep)
  2360. (define-key ctl-x-map "." 'my-rgrep-thing-at-point-projectile-root)
  2361. (defun my-occur (regexp &optional region)
  2362. "My occur command to search REGEXP to search REGION."
  2363. (interactive (list (read-string "List lines matching regexp: "
  2364. (thing-at-point 'symbol t))))
  2365. (occur regexp nil region))
  2366. (define-key ctl-x-map (kbd "C-o") 'my-occur)
  2367. (set-variable 'dumb-jump-prefer-searcher 'rg)
  2368. (defalias 'make 'compile)
  2369. (define-key ctl-x-map "c" 'compile)
  2370. (autoload 'pb/push-item "pushbullet")
  2371. (defun my-pushbullet-note (text &optional title)
  2372. "Push TEXT with optional TITLE."
  2373. (interactive "sText to Push: ")
  2374. (pb/push-item '("") text "note" (or title "")))
  2375. ;;;;;;;;;;;;;;;;;;;;;
  2376. ;; git-bug
  2377. (defconst git-bug-ls-regexp
  2378. (eval-when-compile
  2379. (rx bol
  2380. (submatch (one-or-more alphanumeric)) ; id
  2381. ;; (one-or-more any)
  2382. (one-or-more space)
  2383. (submatch (or "open" "close")) ; status
  2384. (one-or-more space)
  2385. (submatch (maximal-match (zero-or-more print))) ; title
  2386. "\t"
  2387. (submatch (one-or-more alphanumeric)) ; user
  2388. (one-or-more space)
  2389. "C:"
  2390. (submatch (one-or-more digit)) ; Comment num
  2391. (one-or-more space)
  2392. "L:"
  2393. (submatch (one-or-more digit)) ; Label num
  2394. eol
  2395. ))
  2396. "Regexp to parse line of output of git-bug ls.
  2397. Used by `git-bug-ls'.")
  2398. (declare-function string-trim "subr-x")
  2399. (defun git-bug-bugs ()
  2400. "Get list of git-bug bugs."
  2401. (with-temp-buffer
  2402. (git-bug--call-process "bug" "ls")
  2403. (goto-char (point-min))
  2404. (let ((bugs nil))
  2405. (while (not (eq (point) (point-max)))
  2406. (save-match-data
  2407. (when (re-search-forward git-bug-ls-regexp (point-at-eol) t)
  2408. (setq bugs `(,@bugs
  2409. ,(list
  2410. :id (match-string 1)
  2411. :status (match-string 2)
  2412. :title (string-trim (match-string 3))
  2413. :user (match-string 4)
  2414. :comment-num (match-string 5)
  2415. :label-num (match-string 6)
  2416. )))))
  2417. (forward-line 1)
  2418. (goto-char (point-at-bol)))
  2419. bugs)))
  2420. (defun git-bug-ls ()
  2421. "Open and select git bug list buffer."
  2422. (interactive)
  2423. (pop-to-buffer (git-bug-ls-noselect)))
  2424. (defun git-bug-ls--set-tabulated-list-mode-variables ()
  2425. "Not implemented.")
  2426. (defun git-bug-ls-mode ()
  2427. "Not implemented.")
  2428. (defun git-bug-ls-noselect (&optional directory)
  2429. "Open git bug list buffer.
  2430. If optional arg DIRECTORY is given change current directory to there before
  2431. initializing."
  2432. (setq directory (expand-file-name (or directory
  2433. default-directory)))
  2434. (cl-assert (file-directory-p directory))
  2435. (let* ((root (git-bug--get-repository-root directory))
  2436. (name (file-name-nondirectory root))
  2437. (bname (format "*GitBug<%s>*" name)))
  2438. (with-current-buffer (get-buffer-create bname)
  2439. (cd root)
  2440. (git-bug-ls--set-tabulated-list-mode-variables)
  2441. (git-bug-ls-mode)
  2442. (current-buffer))))
  2443. (defun git-bug--get-repository-root (dir)
  2444. "Resolve repository root of DIR.
  2445. If DIR is not inside of any git repository, signal an error."
  2446. (cl-assert (file-directory-p dir))
  2447. (with-temp-buffer
  2448. (cd dir)
  2449. (git-bug--call-process "rev-parse" "--show-toplevel")
  2450. (goto-char (point-min))
  2451. (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
  2452. (defun git-bug--call-process (&rest args)
  2453. "Start git process synchronously with ARGS.
  2454. Raise error when git process ends with non-zero status.
  2455. Any output will be written to current buffer."
  2456. (let ((status (apply 'call-process
  2457. "git"
  2458. nil
  2459. t
  2460. nil
  2461. args)))
  2462. (cl-assert (eq status 0)
  2463. nil
  2464. (buffer-substring-no-properties (point-min) (point-max)))))
  2465. ;;;;;;;;;;;;;;;;;;;
  2466. ;; peek-file-mode
  2467. (defvar peek-file-buffers
  2468. ()
  2469. "Peek buffers.")
  2470. (defun peek-file (file)
  2471. "Peek FILE."
  2472. (interactive "fFile to peek: ")
  2473. (with-current-buffer (find-file file)
  2474. (peek-file-mode)))
  2475. (define-minor-mode peek-file-mode
  2476. "Peek file mode."
  2477. :lighter "PK"
  2478. (view-mode peek-file-mode)
  2479. (add-to-list 'peek-file-buffers
  2480. (current-buffer))
  2481. (add-hook 'switch-buffer-functions
  2482. 'peek-file-remove-buffers))
  2483. (defun peek-file-remove-buffers (&args _)
  2484. "Remove peek file buffers."
  2485. (cl-dolist (buf (cl-copy-list peek-file-buffers))
  2486. (unless (get-buffer-window buf t)
  2487. (setq peek-file-buffers
  2488. (delq buf
  2489. peek-file-buffers))
  2490. (with-current-buffer buf
  2491. (when peek-file-mode
  2492. (kill-buffer))))))
  2493. ;;;;;;;;;;;;;;;;;;;;
  2494. ;; remember-projectile
  2495. ;; TODO: Add global-minor-mode
  2496. (defvar remember-data-file)
  2497. (defun my-set-remember-data-file-buffer-local ()
  2498. "Set `remember-data-file'."
  2499. (when (require 'projectile nil t)
  2500. (setq-local remember-data-file
  2501. (expand-file-name ".remember.notes"
  2502. (projectile-project-root)))))
  2503. (add-hook 'after-change-major-mode-hook
  2504. 'my-set-remember-data-file-buffer-local)
  2505. (define-key ctl-x-map "R" 'remember)
  2506. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2507. ;; ivy
  2508. ;; (set-variable 'enable-recursive-minibuffers t)
  2509. ;; (minibuffer-depth-indicate-mode 1)
  2510. (declare-function ivy--regex-ignore-order "ivy")
  2511. (declare-function ivy--regex-fuzzy "ivy")
  2512. (defun my--ivy-regex-fuzzy-ignore-order (str)
  2513. "Re-build regex from STR for ignore-order fuzzy match."
  2514. (let ((re-list (ivy--regex-ignore-order str)))
  2515. (if (listp re-list)
  2516. (mapcar (lambda (e)
  2517. (let ((head (car e))
  2518. (tail (cdr e)))
  2519. (if tail
  2520. (cons (ivy--regex-fuzzy head)
  2521. tail)
  2522. (cons head tail))))
  2523. re-list)
  2524. (ivy--regex-fuzzy re-list))))
  2525. ;; (my--ivy-regex-fuzzy-ignore-order "ab bc !cee")
  2526. ;; (ivy--regex-fuzzy "ab")
  2527. ;; (ivy--regex-ignore-order "a b")
  2528. (set-variable 'ivy-re-builders-alist
  2529. '((t . my--ivy-regex-fuzzy-ignore-order)))
  2530. ;; (set-variable 'ivy-format-functions-alist
  2531. ;; '((t . ivy-format-function-arrow)))
  2532. (set-variable 'ivy-format-functions-alist
  2533. '((t . (lambda (cands) (ivy--format-function-generic
  2534. (lambda (str)
  2535. (concat "+> "
  2536. (ivy--add-face str 'ivy-current-match)
  2537. ))
  2538. (lambda (str)
  2539. (concat "| " str))
  2540. cands
  2541. "\n")))))
  2542. (set-variable 'ivy-wrap t)
  2543. (set-variable 'ivy-sort-max-size 500)
  2544. (when (fboundp 'ivy-rich-mode)
  2545. (ivy-rich-mode 1))
  2546. (with-eval-after-load 'ivy
  2547. (defvar ivy-minibuffer-map)
  2548. (define-key ivy-minibuffer-map (kbd "C-u")
  2549. (lambda () (interactive) (delete-region (point-at-bol) (point)))))
  2550. (set-variable 'ivy-on-del-error-function 'ignore)
  2551. (when (fboundp 'counsel-M-x)
  2552. (define-key esc-map "x" 'counsel-M-x)
  2553. ;; (counsel-mode 1)
  2554. ;; counsel-fzf executes fzf -f QUERY for each input
  2555. ;; (define-key ctl-x-map "f"
  2556. ;; (lambda ()
  2557. ;; (interactive
  2558. ;; (let ((process-environment (cl-copy-list process-environment)))
  2559. ;; (setenv "FZF_DEFAULT_COMMAND" nil)
  2560. ;; (counsel-fzf)))))
  2561. )
  2562. ;; (when (fboundp 'counsel-switch-buffer)
  2563. ;; (define-key ctl-x-map (kbd "C-b") 'counsel-switch-buffer))
  2564. (declare-function ivy-thing-at-point "ivy")
  2565. (when (and (fboundp 'ivy-read)
  2566. (locate-library "counsel"))
  2567. (defvar counsel-describe-map)
  2568. (defun my-counsel-describe-symbol ()
  2569. "Forwaord to `describe-symbol'."
  2570. (interactive)
  2571. (cl-assert (eval-and-compile (require 'help-mode nil t))) ;; describe-symbol-backends
  2572. (cl-assert (eval-and-compile (require 'counsel nil t)))
  2573. (ivy-read "Describe symbol: " obarray
  2574. ;; From describe-symbol definition
  2575. :predicate (lambda (vv)
  2576. (cl-some (lambda (x) (funcall (nth 1 x) vv))
  2577. describe-symbol-backends))
  2578. :require-match t
  2579. :history 'counsel-describe-symbol-history
  2580. :keymap counsel-describe-map
  2581. :preselect (ivy-thing-at-point)
  2582. :action (lambda (x)
  2583. (describe-symbol (intern x)))
  2584. :caller 'my-counsel-describe-symbol))
  2585. (define-key help-map "o" 'my-counsel-describe-symbol)
  2586. )
  2587. ;; (defun my-ivy-length (x y)
  2588. ;; "Ivy sort to order by string length."
  2589. ;; (<= (length (if (consp x) (car x) x))
  2590. ;; (length (if (consp y) (car y) y))))
  2591. ;; (my-ivy-length "a" (cons "bc" t))
  2592. ;; (my-ivy-length "a" (cons "c" t))
  2593. (declare-function ivy-configure "ivy")
  2594. (with-eval-after-load 'counsel ;; Hook to counsel, not ivy
  2595. ;; (ivy-configure 'my-counsel-describe-symbol
  2596. ;; :sort-fn 'my-ivy-length)
  2597. (ivy-configure 'counsel-M-x
  2598. :initial-input ""
  2599. ;; :sort-fn 'my-ivy-length
  2600. )
  2601. (defvar ivy-sort-matches-functions-alist)
  2602. (add-to-list 'ivy-sort-matches-functions-alist
  2603. '(my-counsel-describe-symbol . ivy--shorter-matches-first))
  2604. (add-to-list 'ivy-sort-matches-functions-alist
  2605. '(counsel-M-x . ivy--shorter-matches-first))
  2606. )
  2607. (when (fboundp 'counsel-imenu)
  2608. (define-key ctl-x-map "l" 'counsel-imenu))
  2609. (when (fboundp 'swiper)
  2610. (define-key esc-map (kbd "C-s") 'swiper))
  2611. ;; ?
  2612. (define-key input-decode-map "\e[1;5C" [C-right])
  2613. (define-key input-decode-map "\e[1;5D" [C-left])
  2614. ;;;;;;;;;;;;;;;;;;;;;;;;
  2615. ;; mozc
  2616. (global-set-key (kbd "C-c m e") 'ignore)
  2617. (global-set-key (kbd "C-c m d") 'ignore)
  2618. ;; mozc
  2619. (when (locate-library "mozc")
  2620. ;; https://tottoto.net/mac-emacs-karabiner-elements-japanese-input-method-config/
  2621. (with-eval-after-load 'mozc
  2622. ;; (define-key mozc-mode-map (kbd "C-h") 'backward-delete-char)
  2623. ;; (define-key mozc-mode-map (kbd "C-p") (kbd "<up>"))
  2624. ;; (define-key mozc-mode-map (kbd "C-n") (kbd "SPC"))
  2625. )
  2626. (setq default-input-method "japanese-mozc")
  2627. (custom-set-variables '(mozc-leim-title "あ"))
  2628. (defun turn-on-input-method ()
  2629. (interactive)
  2630. (activate-input-method default-input-method))
  2631. (defun turn-off-input-method ()
  2632. (interactive)
  2633. (deactivate-input-method))
  2634. ;; (setq mozc-candidate-style 'echo-area)
  2635. (global-set-key (kbd "C-c m e") 'turn-on-input-method)
  2636. (global-set-key (kbd "C-c m d") 'turn-off-input-method)
  2637. (global-set-key (kbd "<f7>") 'turn-off-input-method)
  2638. (global-set-key (kbd "<f8>") 'turn-on-input-method)
  2639. (require 'mozc-popup)
  2640. (set-variable 'mozc-candidate-style 'popup)
  2641. ;; これいる?
  2642. (when (require 'mozc-im nil t)
  2643. (setq default-input-method "japanese-mozc-im")
  2644. ;; (global-set-key (kbd "C-j") 'toggle-input-method)
  2645. )
  2646. )
  2647. ;;;;;;;;;;;;;;
  2648. ;; mmv
  2649. ;; https://www.emacswiki.org/emacs/MakingMarkVisible
  2650. ;;;; Make the mark visible, and the visibility toggleable. ('mmv' means 'make
  2651. ;;;; mark visible'.) By Patrick Gundlach, Teemu Leisti, and Stefan.
  2652. (defgroup mmv nil
  2653. "Make mark visible."
  2654. :group 'tools)
  2655. (defvar mmv-face-foreground
  2656. (face-foreground 'hi-yellow)
  2657. "Foreground color for `mmv-face'.")
  2658. (defvar mmv-face-background
  2659. (face-background 'hi-yellow)
  2660. "Background color for `mmv-face'.")
  2661. (defface mmv-face
  2662. `((t :background ,mmv-face-background :foreground ,mmv-face-foreground))
  2663. "Face used for showing the mark's position."
  2664. :group 'mmv)
  2665. (defvar-local mmv-mark-overlay nil
  2666. "The overlay for showing the mark's position.")
  2667. (defvar-local mmv-is-mark-visible t
  2668. "The overlay is visible only when this variable's value is t.")
  2669. (defun mmv-draw-mark (&rest _)
  2670. "Make the mark's position stand out by means of a one-character-long overlay.
  2671. If the value of variable `mmv-is-mark-visible' is nil, the mark will be
  2672. invisible."
  2673. (unless mmv-mark-overlay
  2674. (setq mmv-mark-overlay (make-overlay 0 0 nil t))
  2675. (overlay-put mmv-mark-overlay 'face 'mmv-face)
  2676. (overlay-put mmv-mark-overlay 'priority 10)) ;; bigger than highlight-indentation-current-column-overlay-priority
  2677. (let ((mark-position (mark t)))
  2678. (cond
  2679. ((null mark-position) (delete-overlay mmv-mark-overlay))
  2680. ((and (< mark-position (point-max))
  2681. (not (eq ?\n (char-after mark-position))))
  2682. (overlay-put mmv-mark-overlay 'after-string nil)
  2683. (move-overlay mmv-mark-overlay mark-position (1+ mark-position)))
  2684. (t
  2685. ;; This branch is called when the mark is at the end of a line or at the
  2686. ;; end of the buffer. We use a bit of trickery to avoid the higlight
  2687. ;; extending from the mark all the way to the right end of the frame.
  2688. (overlay-put mmv-mark-overlay 'after-string
  2689. (propertize " " 'face (overlay-get mmv-mark-overlay 'face)))
  2690. (move-overlay mmv-mark-overlay mark-position mark-position)))))
  2691. ;; Makes display very slow?
  2692. (add-hook 'pre-redisplay-functions #'mmv-draw-mark)
  2693. (defun mmv-toggle-mark-visibility ()
  2694. "Toggles the mark's visiblity and redraws it (whether invisible or visible)."
  2695. (interactive)
  2696. (setq mmv-is-mark-visible (not mmv-is-mark-visible))
  2697. (if mmv-is-mark-visible
  2698. (set-face-attribute 'mmv-face nil :background mmv-face-background :foreground mmv-face-foreground)
  2699. (set-face-attribute 'mmv-face nil :background 'unspecified :foreground 'unspecified))
  2700. (mmv-draw-mark))
  2701. ;; Local Variables:
  2702. ;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
  2703. ;; flycheck-checker: emacs-lisp
  2704. ;; End:
  2705. ;;; emancs.el ends here