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.
 
 
 
 
 
 

3130 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. (defun my-fzf ()
  1002. "Invoke `fzf' with my configurations."
  1003. (require 'fzf)
  1004. (let ((dir (or (ignore-errors
  1005. (require 'projectile)
  1006. (projectile-project-root))
  1007. default-directory)))
  1008. (set-variable 'fzf/window-height 12)
  1009. (set-variable 'fzf/args
  1010. (concat "--print-query "
  1011. "--ansi "
  1012. "--color='bg+:-1' "
  1013. "--inline-info "
  1014. "--cycle "
  1015. "--reverse "
  1016. (format "--prompt='[%s]> ' "
  1017. dir)))
  1018. (fzf/start dir)
  1019. (let* ((buf (or (get-buffer "*fzf*")
  1020. (error "FZF buffer not found")))
  1021. (current-window (or (get-buffer-window buf)
  1022. (error "FZF window not found")))
  1023. (height (window-height current-window))
  1024. (root-window nil)
  1025. (new-window nil))
  1026. (with-current-buffer buf
  1027. (setq mode-line-format nil))
  1028. (jump-to-register :fzf-windows)
  1029. ;; (delete-window current-window)
  1030. (setq root-window (frame-root-window))
  1031. (setq new-window (split-window root-window
  1032. (- height)
  1033. 'below))
  1034. (select-window new-window)
  1035. (switch-to-buffer buf)
  1036. (term-reset-size (window-height)
  1037. (window-width))
  1038. )))
  1039. (define-key ctl-x-map "f" 'my-fzf-or-find-file)
  1040. (defun my-fzf-all-lines ()
  1041. "Fzf all lines."
  1042. (interactive)
  1043. (unless (executable-find "rg")
  1044. (error "rg not found"))
  1045. (let ((process-environment (cl-copy-list process-environment)))
  1046. (setenv "FZF_DEFAULT_COMMAND" "rg -nH --no-heading --hidden --follow --glob '!.git/*' --color=always ^")
  1047. (fzf)))
  1048. (define-key ctl-x-map "S" 'my-fzf-all-lines)
  1049. ;; recently
  1050. ;; TODO: Enable after first visit file?
  1051. (with-eval-after-load 'recently
  1052. (defvar recently-excludes)
  1053. (add-to-list 'recently-excludes
  1054. (rx-to-string (list 'and
  1055. 'string-start
  1056. (expand-file-name package-user-dir))
  1057. t)))
  1058. (when (fboundp 'recently-mode)
  1059. (define-key ctl-x-map (kbd "C-r") 'recently-show)
  1060. (set-variable 'recently-max 1000)
  1061. (recently-mode 1))
  1062. (defvar my-cousel-recently-history nil "History of `my-counsel-recently'.")
  1063. (declare-function recently-list "recently" t)
  1064. (when (and (require 'recently nil t)
  1065. (fboundp 'ivy-read))
  1066. (defun my-counsel-recently ()
  1067. "Consel `recently'."
  1068. (interactive)
  1069. (ivy-read "Recently: " (mapcar 'abbreviate-file-name (recently-list))
  1070. :require-match t
  1071. :history 'my-cousel-recently-history
  1072. :preselect default-directory
  1073. :action (lambda (x) (find-file x))
  1074. :caller 'my-counsel-recently))
  1075. (define-key ctl-x-map (kbd "C-r") 'my-counsel-recently)
  1076. )
  1077. (when (fboundp 'editorconfig-mode)
  1078. (add-hook 'after-first-visit-hook
  1079. 'editorconfig-mode)
  1080. (add-hook 'after-first-visit-hook
  1081. 'editorconfig-mode-apply
  1082. t)) ;; Do after enabling editorconfig-mode
  1083. (set-variable 'editorconfig-get-properties-function
  1084. 'editorconfig-core-get-properties-hash)
  1085. (set-variable 'editorconfig-mode-lighter "")
  1086. (when (fboundp 'ws-butler-mode)
  1087. (set-variable 'editorconfig-trim-whitespaces-mode
  1088. 'ws-butler-mode))
  1089. (with-eval-after-load 'org-src
  1090. ;; [*.org\[\*Org Src*\[ c \]*\]]
  1091. (add-hook 'org-src-mode-hook
  1092. 'editorconfig-mode-apply t))
  1093. (when (fboundp 'editorconfig-custom-majormode)
  1094. (add-hook 'editorconfig-after-apply-functions
  1095. 'editorconfig-custom-majormode))
  1096. ;; Add readonly=true to set read-only-mode
  1097. (add-hook 'editorconfig-after-apply-functions
  1098. (lambda (props)
  1099. (let ((r (gethash 'readonly props)))
  1100. (when (and (string= r "true")
  1101. (not buffer-read-only))
  1102. (read-only-mode 1)))))
  1103. (add-hook 'editorconfig-hack-properties-functions
  1104. '(lambda (props)
  1105. (when (derived-mode-p 'makefile-mode)
  1106. (puthash 'indent_style "tab" props))
  1107. (when (derived-mode-p 'diff-mode)
  1108. (puthash 'trim_trailing_whitespace "false" props)
  1109. (puthash 'insert_final_newline "false" props)
  1110. )
  1111. ))
  1112. (when (fboundp 'editorconfig-auto-apply-enable)
  1113. (add-hook 'editorconfig-conf-mode-hook
  1114. 'editorconfig-auto-apply-enable))
  1115. ;; (when (fboundp 'editorconfig-charset-extras)
  1116. ;; (add-hook 'editorconfig-custom-hooks
  1117. ;; 'editorconfig-charset-extras))
  1118. (setq revert-without-query '(".+"))
  1119. ;; save cursor position
  1120. (when (fboundp 'save-place-mode)
  1121. (autoload 'save-place-find-file-hook "saveplace")
  1122. (add-hook 'after-first-visit-hook
  1123. 'save-place-mode)
  1124. (add-hook 'after-first-visit-hook
  1125. 'save-place-find-file-hook
  1126. t))
  1127. (set-variable 'save-place-file (concat user-emacs-directory
  1128. "places"))
  1129. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  1130. (setq make-backup-files t)
  1131. (setq vc-make-backup-files t)
  1132. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  1133. (setq backup-directory-alist
  1134. (cons (cons "." (expand-file-name (concat user-emacs-directory
  1135. "backup")))
  1136. backup-directory-alist))
  1137. (setq version-control 't)
  1138. (setq delete-old-versions t)
  1139. (setq kept-new-versions 20)
  1140. (setq auto-save-list-file-prefix (expand-file-name (concat user-emacs-directory
  1141. "auto-save/")))
  1142. ;; (setq delete-auto-save-files t)
  1143. (setq auto-save-visited-interval 8)
  1144. (auto-save-visited-mode 1)
  1145. ;; (add-to-list 'auto-save-file-name-transforms
  1146. ;; `(".*" ,(concat user-emacs-directory "auto-save-dir") t))
  1147. ;; (setq auto-save-interval 3)
  1148. ;; (auto-save-mode 1)
  1149. (add-to-list 'completion-ignored-extensions ".bak")
  1150. (set-variable 'completion-cycle-threshold nil) ;; NEVER use
  1151. (setq delete-by-moving-to-trash t)
  1152. ;; trash-directory "~/.emacs.d/trash")
  1153. (add-hook 'after-save-hook
  1154. 'executable-make-buffer-file-executable-if-script-p)
  1155. (when (fboundp 'smart-revert-on)
  1156. (smart-revert-on))
  1157. ;; autosave
  1158. ;; auto-save-visited-mode can be used instead?
  1159. ;; (when (require 'autosave nil t)
  1160. ;; (autosave-set 8))
  1161. ;; bookmarks
  1162. (set-variable 'bookmark-default-file
  1163. (expand-file-name (concat user-emacs-directory
  1164. "bmk")))
  1165. (set-variable 'bookmark-sort-flag nil)
  1166. (defun my-bookmark-set ()
  1167. "My `bookmark-set'."
  1168. (interactive)
  1169. (cl-assert (or buffer-file-name
  1170. default-directory))
  1171. (let ((name (file-name-nondirectory (or buffer-file-name
  1172. (directory-file-name default-directory))))
  1173. (linenum (count-lines (point-min)
  1174. (point)))
  1175. (linetext (buffer-substring-no-properties (point-at-bol)
  1176. (point-at-eol))))
  1177. (bookmark-set (format "%s:%d:%s"
  1178. name linenum linetext)
  1179. nil)))
  1180. ;; Done by advice instead
  1181. ;; (set-variable 'bookmark-save-flag
  1182. ;; 1)
  1183. (with-eval-after-load 'recentf
  1184. (defvar recentf-exclude)
  1185. (defvar bookmark-default-file)
  1186. (add-to-list 'recentf-exclude
  1187. (regexp-quote bookmark-default-file)))
  1188. (defvar bookmark-default-file)
  1189. (defun my-bookmark-set--advice (orig-func &rest args)
  1190. "Function for `bookmark-set-internal'.
  1191. ORIG-FUNC is the target function, and ARGS is the argument when it is called."
  1192. (bookmark-load bookmark-default-file)
  1193. (apply orig-func args)
  1194. (bookmark-save))
  1195. (with-eval-after-load 'bookmark
  1196. (advice-add 'bookmark-set-internal
  1197. :around
  1198. 'my-bookmark-set--advice))
  1199. (define-key ctl-x-map "b" 'list-bookmarks)
  1200. (when (fboundp 'counsel-bookmark)
  1201. (define-key ctl-x-map "b" 'counsel-bookmark))
  1202. (define-key ctl-x-map "B" 'my-bookmark-set)
  1203. ;; vc
  1204. (set-variable 'vc-handled-backends '(RCS))
  1205. (set-variable 'vc-rcs-register-switches "-l")
  1206. (set-variable 'vc-rcs-checkin-switches "-l")
  1207. (set-variable 'vc-command-messages t)
  1208. (when (fboundp 'neotree)
  1209. (define-key ctl-x-map (kbd "C-n") 'neotree))
  1210. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1211. ;; share clipboard with x
  1212. ;; this page describes this in details, but only these sexps seem to be needed
  1213. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  1214. (and nil
  1215. (not window-system)
  1216. (not (eq window-system 'mac))
  1217. (getenv "DISPLAY")
  1218. (not (equal (getenv "DISPLAY") ""))
  1219. (executable-find "xclip")
  1220. ;; (< emacs-major-version 24)
  1221. '(require 'xclip nil t)
  1222. nil
  1223. (turn-on-xclip))
  1224. (declare-function turn-on-pasteboard "pasteboard")
  1225. (and (eq system-type 'darwin)
  1226. (require 'pasteboard nil t)
  1227. (turn-on-pasteboard))
  1228. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1229. ;; some modes and hooks
  1230. ;; Include some extra modes
  1231. (require 'generic-x)
  1232. ;; Derived from https://github.com/ensime/ensime-emacs/issues/591#issuecomment-291916753
  1233. (defun my-scalafmt ()
  1234. (interactive)
  1235. (cl-assert buffer-file-name)
  1236. (cl-assert (not (buffer-modified-p)))
  1237. (let* ((configdir (locate-dominating-file default-directory ".scalafmt.conf"))
  1238. (configoption (if configdir
  1239. (concat " --config "
  1240. (shell-quote-argument (expand-file-name configdir))
  1241. ".scalafmt.conf"
  1242. )
  1243. ""))
  1244. (str (concat "scalafmt -f "
  1245. (shell-quote-argument buffer-file-name)
  1246. configoption
  1247. " -i --exclude ensime")))
  1248. (message str)
  1249. (shell-command-to-string str))
  1250. (message "scalafmt done")
  1251. (revert-buffer nil t))
  1252. (when (fboundp 'web-mode)
  1253. (add-to-list 'auto-mode-alist
  1254. '("\\.html\\.j2\\'" . web-mode))
  1255. (add-to-list 'auto-mode-alist
  1256. ;; Django Template Language
  1257. '("\\.dtl\\'" . web-mode))
  1258. )
  1259. (when (locate-library "wgrep")
  1260. (set-variable 'wgrep-auto-save-buffer t)
  1261. (with-eval-after-load 'grep
  1262. (defvar grep-mode-map)
  1263. (define-key grep-mode-map
  1264. "e"
  1265. 'wgrep-change-to-wgrep-mode)))
  1266. (when (fboundp 'grep-context-mode)
  1267. (add-hook 'compilation-mode-hook #'grep-context-mode))
  1268. (with-eval-after-load 'remember
  1269. (defvar remember-mode-map)
  1270. (define-key remember-mode-map (kbd "C-x C-s") 'ignore))
  1271. (set-variable 'remember-notes-initial-major-mode
  1272. 'change-log-mode)
  1273. (declare-function global-magit-file-mode "magit-files")
  1274. (with-eval-after-load 'magit-files
  1275. ;; `global-magit-file-mode' is enabled by default and this mode overwrites
  1276. ;; existing keybindings.
  1277. ;; Apparently it is a HARMFUL behavior and it is really awful that I have
  1278. ;; to disable thie mode here, but do anyway.
  1279. ;; See also https://github.com/magit/magit/issues/3517
  1280. (global-magit-file-mode -1))
  1281. (with-eval-after-load 'magit-section
  1282. (set-face-background 'magit-section-highlight
  1283. nil))
  1284. ;; Sane colors
  1285. (with-eval-after-load 'magit-diff
  1286. (set-face-background 'magit-diff-context nil)
  1287. (set-face-background 'magit-diff-context-highlight nil)
  1288. (set-face-foreground 'magit-diff-hunk-heading nil)
  1289. (set-face-background 'magit-diff-hunk-heading nil)
  1290. (set-face-foreground 'magit-diff-hunk-heading-highlight nil)
  1291. (set-face-background 'magit-diff-hunk-heading-highlight nil)
  1292. ;; https://blog.shibayu36.org/entry/2016/03/27/220552
  1293. (set-face-foreground 'magit-diff-added "green")
  1294. (set-face-background 'magit-diff-added nil)
  1295. (set-face-foreground 'magit-diff-added-highlight "green")
  1296. (set-face-background 'magit-diff-added-highlight nil)
  1297. (set-face-foreground 'magit-diff-removed "red")
  1298. (set-face-background 'magit-diff-removed nil)
  1299. (set-face-foreground 'magit-diff-removed-highlight "red")
  1300. (set-face-background 'magit-diff-removed-highlight nil)
  1301. (set-face-background 'magit-diff-lines-boundary "blue")
  1302. )
  1303. (declare-function magit-show-commit "magit")
  1304. (defun my-magit-messenger (file line)
  1305. "Magit messenger."
  1306. (interactive (list buffer-file-name
  1307. (line-number-at-pos)))
  1308. (cl-assert file)
  1309. (cl-assert line)
  1310. (let* ((blame-args '("-w"))
  1311. (id (with-temp-buffer
  1312. (let ((exit (apply 'call-process
  1313. "git" ;; PROGRAM
  1314. nil ;; INFILE
  1315. t ;; DESTINATION
  1316. nil ;; DISPLAY
  1317. "--no-pager" ;; ARGS
  1318. "blame"
  1319. "-L"
  1320. (format "%d,+1" line)
  1321. "--porcelain"
  1322. file
  1323. blame-args
  1324. )))
  1325. (goto-char (point-min))
  1326. (cl-assert (eq exit 0)
  1327. "Failed: %s" (buffer-substring (point)
  1328. (point-at-eol)))
  1329. (save-match-data
  1330. (re-search-forward (rx buffer-start
  1331. (one-or-more hex-digit)))
  1332. (match-string 0))))))
  1333. (magit-show-commit id)))
  1334. (when (boundp 'git-rebase-filename-regexp)
  1335. (add-to-list 'auto-mode-alist
  1336. `(,git-rebase-filename-regexp . text-mode)))
  1337. (when (fboundp 'ggtags-mode)
  1338. (add-hook 'c-mode-common-hook
  1339. 'ggtags-mode)
  1340. (add-hook 'python-mode-hook
  1341. 'ggtags-mode)
  1342. (add-hook 'js-mode-hook
  1343. 'ggtags-mode)
  1344. (add-hook 'scheme-mode-hook
  1345. 'ggtags-mode)
  1346. )
  1347. (when (fboundp 'imenu-list-minor-mode)
  1348. (defvar imenu-list-buffer-name)
  1349. (defun my-imenu-list-toggle ()
  1350. "My 'imenu-list` toggle."
  1351. (interactive)
  1352. (require 'imenu-list)
  1353. (if (eq (window-buffer)
  1354. (get-buffer imenu-list-buffer-name))
  1355. (imenu-list-minor-mode -1)
  1356. (imenu-list-minor-mode 1)))
  1357. ;; (set-variable 'imenu-list-auto-resize t)
  1358. (set-variable 'imenu-list-focus-after-activation t)
  1359. ;; (define-key ctl-x-map (kbd "C-l") 'my-imenu-list-toggle)
  1360. (define-key ctl-x-map (kbd "C-l") 'imenu-list-smart-toggle)
  1361. )
  1362. (add-hook 'emacs-lisp-mode-hook
  1363. (lambda ()
  1364. (setq imenu-generic-expression
  1365. `(("Sections" ";;;\+\n;; \\(.*\\)\n" 1)
  1366. ,@imenu-generic-expression))))
  1367. ;; TODO: Try paraedit http://daregada.blogspot.com/2012/03/paredit.html
  1368. (with-eval-after-load 'compile
  1369. (defvar compilation-filter-start)
  1370. (defvar compilation-error-regexp-alist)
  1371. (eval-and-compile (require 'ansi-color))
  1372. (add-hook 'compilation-filter-hook
  1373. (lambda ()
  1374. (let ((inhibit-read-only t))
  1375. (ansi-color-apply-on-region compilation-filter-start
  1376. (point)))))
  1377. (add-to-list 'compilation-error-regexp-alist
  1378. ;; ansible-lint
  1379. '("^\\([^ \n]+\\):\\([0-9]+\\)$" 1 2))
  1380. (add-to-list 'compilation-error-regexp-alist
  1381. ;; pydocstyle
  1382. '("^\\([^ \n]+\\):\\([0-9]+\\) " 1 2))
  1383. )
  1384. (declare-function company-cancel "company")
  1385. (when (fboundp 'global-company-mode)
  1386. (add-hook 'after-first-visit-hook
  1387. 'global-company-mode))
  1388. (declare-function company-manual-begin "company")
  1389. (with-eval-after-load 'company
  1390. ;; http://qiita.com/sune2/items/b73037f9e85962f5afb7
  1391. ;; https://qiita.com/yuze/items/a145b1e3edb6d0c24cbf
  1392. (set-variable 'company-idle-delay nil)
  1393. (set-variable 'company-minimum-prefix-length 2)
  1394. (set-variable 'company-selection-wrap-around t)
  1395. (defvar company-mode-map)
  1396. (define-key company-mode-map (kbd "C-i") 'company-indent-or-complete-common)
  1397. ;; (with-eval-after-load 'python
  1398. ;; (defvar python-indent-trigger-commands)
  1399. ;; ;; TODO: This disables completion in puthon?
  1400. ;; (add-to-list 'python-indent-trigger-commands
  1401. ;; 'company-indent-or-complete-common))
  1402. (define-key ctl-x-map (kbd "C-i") 'company-complete) ; Originally `indent-rigidly'
  1403. (defvar company-active-map)
  1404. (define-key company-active-map (kbd "C-n") 'company-select-next)
  1405. (define-key company-active-map (kbd "C-p") 'company-select-previous)
  1406. (define-key company-active-map (kbd "C-s") 'company-filter-candidates)
  1407. (define-key company-active-map (kbd "C-i") 'company-complete-selection)
  1408. (define-key company-active-map (kbd "C-f") 'company-complete-selection)
  1409. (defvar company-mode)
  1410. (defvar company-candidates)
  1411. (defvar company-candidates-length)
  1412. ;; (popup-tip "Hello, World!")
  1413. (defun my-company-lighter-current-length ()
  1414. "Get current candidate length."
  1415. (interactive)
  1416. (let ((l nil)
  1417. (inhibit-message t))
  1418. (when (and company-mode
  1419. (not (minibufferp))
  1420. ;; Do nothing when already in company completion
  1421. (not company-candidates))
  1422. ;; FIXME: Somehow it cannto catch errors from ggtags
  1423. (ignore-errors
  1424. ;; (company-auto-begin)
  1425. (company-manual-begin)
  1426. (setq l company-candidates-length)
  1427. (company-cancel)))
  1428. (if l
  1429. (format "[%d]" l)
  1430. "")))
  1431. (defvar company-lighter)
  1432. (set-variable 'company-lighter-base "Cmp")
  1433. ;; (add-to-list 'company-lighter
  1434. ;; '(:eval (my-company-lighter-current-length))
  1435. ;; t)
  1436. ;; This breaks japanese text input
  1437. ;; (set-variable 'my-company-length-popup-tip-timer
  1438. ;; (run-with-idle-timer 0.2 t
  1439. ;; 'my-company-length-popup-tip))
  1440. ;; (current-active-maps)
  1441. ;; (lookup-key)
  1442. '(mapcar (lambda (map)
  1443. (lookup-key map (kbd "C-i")))
  1444. (current-active-maps))
  1445. ;; https://qiita.com/syohex/items/8d21d7422f14e9b53b17
  1446. (set-face-attribute 'company-tooltip nil
  1447. :foreground "black" :background "lightgrey")
  1448. (set-face-attribute 'company-tooltip-common nil
  1449. :foreground "black" :background "lightgrey")
  1450. (set-face-attribute 'company-tooltip-common-selection nil
  1451. :foreground "white" :background "steelblue")
  1452. (set-face-attribute 'company-tooltip-selection nil
  1453. :foreground "black" :background "steelblue")
  1454. (set-face-attribute 'company-preview-common nil
  1455. :background nil :foreground "lightgrey" :underline t)
  1456. (set-face-attribute 'company-scrollbar-fg nil
  1457. :background "orange")
  1458. (set-face-attribute 'company-scrollbar-bg nil
  1459. :background "gray40")
  1460. )
  1461. ;; https://github.com/lunaryorn/flycheck
  1462. ;; TODO: Any way to disable auto check?
  1463. ;; Update flycheck-hooks-alist?
  1464. (when (fboundp 'global-flycheck-mode)
  1465. (add-hook 'after-first-visit-hook
  1466. 'global-flycheck-mode))
  1467. ;; (set-variable 'flycheck-display-errors-delay 2.0)
  1468. ;; (fset 'flycheck-display-error-at-point-soon 'ignore)
  1469. ;; (with-eval-after-load 'flycheck
  1470. ;; (when (fboundp 'flycheck-black-check-setup)
  1471. ;; (flycheck-black-check-setup)))
  1472. (when (fboundp 'ilookup-open-word)
  1473. (define-key ctl-x-map "d" 'ilookup-open-word))
  1474. (set-variable 'ac-ignore-case nil)
  1475. (when (fboundp 'term-run-shell-command)
  1476. (define-key ctl-x-map "t" 'term-run-shell-command))
  1477. (add-to-list 'safe-local-variable-values
  1478. '(encoding utf-8))
  1479. (setq enable-local-variables :safe)
  1480. ;; Detect file type from shebang and set major-mode.
  1481. (add-to-list 'interpreter-mode-alist
  1482. '("python3" . python-mode))
  1483. (add-to-list 'interpreter-mode-alist
  1484. '("python2" . python-mode))
  1485. (with-eval-after-load 'python
  1486. (defvar python-mode-map (make-sparse-keymap))
  1487. (define-key python-mode-map (kbd "C-m") 'newline-and-indent))
  1488. ;; I want to use this, but this breaks normal self-insert-command
  1489. ;; (set-variable 'py-indent-list-style
  1490. ;; 'one-level-to-beginning-of-statement)
  1491. (set-variable 'pydoc-command
  1492. "python3 -m pydoc")
  1493. (declare-function with-venv-advice-add "with-venv")
  1494. (with-eval-after-load 'pydoc
  1495. (when (require 'with-venv nil t)
  1496. (with-venv-advice-add 'pydoc)))
  1497. (set-variable 'flycheck-python-mypy-config '("mypy.ini" ".mypy.ini" "setup.cfg"))
  1498. (set-variable 'flycheck-flake8rc '("setup.cfg" "tox.ini" ".flake8rc"))
  1499. (set-variable 'flycheck-python-pylint-executable "python3")
  1500. (set-variable 'flycheck-python-pycompile-executable "python3")
  1501. (set-variable 'python-indent-guess-indent-offset nil)
  1502. (with-eval-after-load 'blacken
  1503. (when (require 'with-venv nil t)
  1504. (with-venv-advice-add 'blacken-buffer)))
  1505. (with-eval-after-load 'ansible-doc
  1506. (when (require 'with-venv nil t)
  1507. (with-venv-advice-add 'ansible-doc)))
  1508. ;; `isortify-buffer' breaks buffer when it contains japanese text
  1509. (defun my-isortify ()
  1510. (interactive)
  1511. (cl-assert buffer-file-name)
  1512. (cl-assert (not (buffer-modified-p)))
  1513. (call-process "python" ;; PROGRAM
  1514. nil ;; INFILE
  1515. nil ;; DESTINATION
  1516. nil ;; DISPLAY
  1517. "-m" "isort" buffer-file-name)
  1518. (message "isortify done")
  1519. (revert-buffer nil t))
  1520. (when (fboundp 'with-venv-advice-add)
  1521. ;; TODO: Lazy load with-venv
  1522. (with-venv-advice-add 'my-isortify))
  1523. ;; https://github.com/lunaryorn/old-emacs-configuration/blob/master/lisp/flycheck-virtualenv.el
  1524. (defun my-set-venv-flycheck-executable-find ()
  1525. "Set flycheck executabie find."
  1526. (interactive)
  1527. (when (fboundp 'with-venv)
  1528. (set-variable 'flycheck-executable-find
  1529. '(lambda (e)
  1530. (with-venv
  1531. (executable-find e)))
  1532. t)))
  1533. (defun my-update-flycheck-flake8-error-level-alist ()
  1534. "Update `flycheck-flake8-error-level-alist'."
  1535. (defvar flycheck-flake8-error-level-alist)
  1536. ;; (add-to-list 'flycheck-flake8-error-level-alist
  1537. ;; '("^D.*$" . warning))
  1538. (set-variable 'flycheck-flake8-error-level-alist
  1539. nil)
  1540. )
  1541. (add-hook 'python-mode-hook
  1542. 'my-set-venv-flycheck-executable-find)
  1543. (add-hook 'python-mode-hook
  1544. 'my-update-flycheck-flake8-error-level-alist)
  1545. (when (fboundp 'with-venv-info-mode)
  1546. (add-hook 'python-mode-hook
  1547. 'with-venv-info-mode))
  1548. ;; Run multiple chekcers
  1549. ;; https://github.com/flycheck/flycheck/issues/186
  1550. (add-hook 'python-mode-hook
  1551. (lambda ()
  1552. ;; Currently on python-mode eldoc-mode sometimes print
  1553. ;; wired message on "from" keyword:
  1554. ;;var from = require("./from")
  1555. (eldoc-mode -1)))
  1556. ;; http://fukuyama.co/foreign-regexp
  1557. '(and (require 'foreign-regexp nil t)
  1558. (progn
  1559. (setq foreign-regexp/regexp-type 'perl)
  1560. '(setq reb-re-syntax 'foreign-regexp)
  1561. ))
  1562. (with-eval-after-load 'sql
  1563. (require 'sql-indent nil t))
  1564. (add-to-list 'auto-mode-alist
  1565. '("\\.hql\\'" . sql-mode))
  1566. (when (fboundp 'git-command)
  1567. (define-key ctl-x-map "g" 'git-command))
  1568. (when (fboundp 'gited-list)
  1569. (defalias 'gited 'gited-list))
  1570. (when (fboundp 'global-git-commit-mode)
  1571. (add-hook 'after-first-visit-hook
  1572. 'global-git-commit-mode)
  1573. (add-hook 'after-first-visit-hook
  1574. 'git-commit-setup-check-buffer))
  1575. (with-eval-after-load 'git-commit
  1576. (add-hook 'git-commit-setup-hook
  1577. 'turn-off-auto-fill t))
  1578. (with-eval-after-load 'rst
  1579. (defvar rst-mode-map)
  1580. (define-key rst-mode-map (kbd "C-m") 'newline-and-indent))
  1581. (with-eval-after-load 'jdee
  1582. (add-hook 'jdee-mode-hook
  1583. (lambda ()
  1584. (make-local-variable 'global-mode-string)
  1585. (add-to-list 'global-mode-string
  1586. mode-line-position))))
  1587. ;; Cannot enable error thrown. Why???
  1588. ;; https://github.com/m0smith/malabar-mode#Installation
  1589. ;; (when (require 'malabar-mode nil t)
  1590. ;; (add-to-list 'load-path
  1591. ;; (expand-file-name (concat user-emacs-directory "/cedet")))
  1592. ;; (require 'cedet-devel-load nil t)
  1593. ;; (eval-after-init (activate-malabar-mode)))
  1594. (with-eval-after-load 'make-mode
  1595. (defvar makefile-mode-map (make-sparse-keymap))
  1596. (define-key makefile-mode-map (kbd "C-m") 'newline-and-indent)
  1597. ;; this functions is set in write-file-functions, i cannot find any
  1598. ;; good way to remove this.
  1599. (fset 'makefile-warn-suspicious-lines 'ignore))
  1600. (with-eval-after-load 'verilog-mode
  1601. (defvar verilog-mode-map (make-sparse-keymap))
  1602. (define-key verilog-mode-map ";" 'self-insert-command))
  1603. (setq diff-switches "-u")
  1604. (autoload 'diff-goto-source "diff-mode" nil t)
  1605. (with-eval-after-load 'diff-mode
  1606. ;; (when (and (eq major-mode
  1607. ;; 'diff-mode)
  1608. ;; (not buffer-file-name))
  1609. ;; ;; do not pass when major-mode is derived mode of diff-mode
  1610. ;; (view-mode 1))
  1611. (set-face-attribute 'diff-header nil
  1612. :foreground nil
  1613. :background nil
  1614. :weight 'bold)
  1615. (set-face-attribute 'diff-file-header nil
  1616. :foreground nil
  1617. :background nil
  1618. :weight 'bold)
  1619. (set-face-foreground 'diff-index "blue")
  1620. (set-face-attribute 'diff-hunk-header nil
  1621. :foreground "cyan"
  1622. :weight 'normal)
  1623. (set-face-attribute 'diff-context nil
  1624. ;; :foreground "white"
  1625. :foreground nil
  1626. :weight 'normal)
  1627. (set-face-foreground 'diff-removed "red")
  1628. (set-face-foreground 'diff-added "green")
  1629. (set-face-background 'diff-removed nil)
  1630. (set-face-background 'diff-added nil)
  1631. (set-face-attribute 'diff-changed nil
  1632. :foreground "magenta"
  1633. :weight 'normal)
  1634. (set-face-attribute 'diff-refine-changed nil
  1635. :foreground nil
  1636. :background nil
  1637. :weight 'bold
  1638. :inverse-video t)
  1639. ;; Annoying !
  1640. ;;(diff-auto-refine-mode)
  1641. )
  1642. ;; (ffap-bindings)
  1643. (set-variable 'browse-url-browser-function
  1644. 'eww-browse-url)
  1645. (set-variable 'sh-here-document-word "__EOC__")
  1646. (with-eval-after-load 'adoc-mode
  1647. (defvar adoc-mode-map)
  1648. (define-key adoc-mode-map (kbd "C-m") 'newline))
  1649. (when (fboundp 'adoc-mode)
  1650. (setq auto-mode-alist
  1651. `(("\\.adoc\\'" . adoc-mode)
  1652. ("\\.asciidoc\\'" . adoc-mode)
  1653. ,@auto-mode-alist)))
  1654. (with-eval-after-load 'markup-faces
  1655. ;; Is this too match ?
  1656. (set-face-foreground 'markup-meta-face
  1657. "color-245")
  1658. (set-face-foreground 'markup-meta-hide-face
  1659. "color-245")
  1660. )
  1661. ;; TODO: check if this is required
  1662. (with-eval-after-load 'groovy-mode
  1663. (defvar groovy-mode-map)
  1664. (define-key groovy-mode-map "(" 'self-insert-command)
  1665. (define-key groovy-mode-map ")" 'self-insert-command)
  1666. (define-key groovy-mode-map (kbd "C-m") 'newline-and-indent)
  1667. )
  1668. (when (fboundp 'groovy-mode)
  1669. (add-to-list 'auto-mode-alist
  1670. '("build\\.gradle\\'" . groovy-mode)))
  1671. (add-to-list 'auto-mode-alist
  1672. '("\\.gawk\\'" . awk-mode))
  1673. (with-eval-after-load 'yaml-mode
  1674. (defvar yaml-mode-map (make-sparse-keymap))
  1675. (define-key yaml-mode-map (kbd "C-m") 'newline))
  1676. (with-eval-after-load 'html-mode
  1677. (defvar html-mode-map (make-sparse-keymap))
  1678. (define-key html-mode-map (kbd "C-m") 'reindent-then-newline-and-indent))
  1679. (with-eval-after-load 'text-mode
  1680. (define-key text-mode-map (kbd "C-m") 'newline))
  1681. (with-eval-after-load 'info
  1682. (defvar Info-additional-directory-list)
  1683. (dolist (dir (directory-files (concat user-emacs-directory
  1684. "info")
  1685. t
  1686. "^[^.].*"))
  1687. (when (file-directory-p dir)
  1688. (add-to-list 'Info-additional-directory-list
  1689. dir)))
  1690. (let ((dir (expand-file-name "~/.brew/share/info")))
  1691. (when (file-directory-p dir)
  1692. (add-to-list 'Info-additional-directory-list
  1693. dir))))
  1694. (with-eval-after-load 'apropos
  1695. (defvar apropos-mode-map (make-sparse-keymap))
  1696. (define-key apropos-mode-map "n" 'next-line)
  1697. (define-key apropos-mode-map "p" 'previous-line))
  1698. ;; `isearch' library does not call `provide' so cannot use with-eval-after-load
  1699. ;; (define-key isearch-mode-map
  1700. ;; (kbd "C-j") 'isearch-other-control-char)
  1701. ;; (define-key isearch-mode-map
  1702. ;; (kbd "C-k") 'isearch-other-control-char)
  1703. ;; (define-key isearch-mode-map
  1704. ;; (kbd "C-h") 'isearch-other-control-char)
  1705. (define-key isearch-mode-map (kbd "C-h") 'isearch-del-char)
  1706. (define-key isearch-mode-map (kbd "M-r")
  1707. 'isearch-query-replace-regexp)
  1708. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  1709. (setq lazy-highlight-cleanup nil)
  1710. ;; face for isearch highlighing
  1711. (set-face-attribute 'lazy-highlight
  1712. nil
  1713. :foreground `unspecified
  1714. :background `unspecified
  1715. :underline t
  1716. ;; :weight `bold
  1717. )
  1718. (add-hook 'outline-mode-hook
  1719. (lambda ()
  1720. (when (string-match "\\.md\\'" buffer-file-name)
  1721. (setq-local outline-regexp "#+ "))))
  1722. (add-hook 'outline-mode-hook
  1723. 'outline-show-all)
  1724. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  1725. (with-eval-after-load 'markdown-mode
  1726. (defvar gfm-mode-map)
  1727. (define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline)
  1728. (define-key gfm-mode-map "`" nil) ;; markdown-electric-backquote
  1729. )
  1730. (when (fboundp 'gfm-mode)
  1731. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
  1732. (add-hook 'markdown-mode-hook
  1733. 'outline-minor-mode)
  1734. (add-hook 'markdown-mode-hook
  1735. (lambda ()
  1736. (setq-local comment-start ";")))
  1737. )
  1738. ;; http://keisanbutsuriya.hateblo.jp/entry/2015/02/10/152543
  1739. ;; M-$ to ispell word
  1740. ;; M-x flyspell-buffer to highlight all suspicious words
  1741. (when (executable-find "aspell")
  1742. (set-variable 'ispell-program-name "aspell")
  1743. (set-variable 'ispell-extra-args '("--lang=en_US")))
  1744. (with-eval-after-load 'ispell
  1745. (add-to-list 'ispell-skip-region-alist '("[^\000-\377]+")))
  1746. (when (fboundp 'flyspell-mode)
  1747. (add-hook 'text-mode-hook
  1748. 'flyspell-mode))
  1749. (when (fboundp 'flyspell-prog-mode)
  1750. (add-hook 'prog-mode-hook
  1751. 'flyspell-prog-mode))
  1752. ;; c-mode
  1753. ;; http://www.emacswiki.org/emacs/IndentingC
  1754. ;; http://en.wikipedia.org/wiki/Indent_style
  1755. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  1756. ;; http://seesaawiki.jp/whiteflare503/d/Emacs%20%a5%a4%a5%f3%a5%c7%a5%f3%a5%c8
  1757. (with-eval-after-load 'cc-vars
  1758. (defvar c-default-style nil)
  1759. (add-to-list 'c-default-style
  1760. '(c-mode . "k&r"))
  1761. (add-to-list 'c-default-style
  1762. '(c++-mode . "k&r")))
  1763. (with-eval-after-load 'js2-mode
  1764. ;; currently do not use js2-mode
  1765. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  1766. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  1767. ;; (defvar js2-mode-map (make-sparse-keymap))
  1768. ;; (define-key js2-mode-map (kbd "C-m") (lambda ()
  1769. ;; (interactive)
  1770. ;; (js2-enter-key)
  1771. ;; (indent-for-tab-command)))
  1772. ;; (add-hook (kill-local-variable 'before-save-hook)
  1773. ;; 'js2-before-save)
  1774. ;; (add-hook 'before-save-hook
  1775. ;; 'my-indent-buffer
  1776. ;; nil
  1777. ;; t)
  1778. )
  1779. (add-to-list 'interpreter-mode-alist
  1780. '("node" . js-mode))
  1781. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  1782. (with-eval-after-load 'uniquify
  1783. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  1784. (setq uniquify-ignore-buffers-re "*[^*]+*")
  1785. (setq uniquify-min-dir-content 1))
  1786. (with-eval-after-load 'view
  1787. (defvar view-mode-map (make-sparse-keymap))
  1788. (define-key view-mode-map "j" 'scroll-up-line)
  1789. (define-key view-mode-map "k" 'scroll-down-line)
  1790. (define-key view-mode-map "v" 'toggle-read-only)
  1791. (define-key view-mode-map "q" 'bury-buffer)
  1792. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  1793. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  1794. ;; (define-key view-mode-map
  1795. ;; "n" 'nonincremental-repeat-search-forward)
  1796. ;; (define-key view-mode-map
  1797. ;; "N" 'nonincremental-repeat-search-backward)
  1798. ;; N conflicts with git-walktree
  1799. ;; (define-key view-mode-map "/" 'isearch-forward-regexp)
  1800. ;; (define-key view-mode-map "?" 'isearch-backward-regexp)
  1801. ;; (define-key view-mode-map "n" 'isearch-repeat-forward)
  1802. ;; (define-key view-mode-map "N" 'isearch-repeat-backward)
  1803. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point))
  1804. (global-set-key "\M-r" 'view-mode)
  1805. ;; (setq view-read-only t)
  1806. (with-eval-after-load 'term
  1807. (defvar term-raw-map (make-sparse-keymap))
  1808. (define-key term-raw-map (kbd "C-x")
  1809. (lookup-key (current-global-map)
  1810. (kbd "C-x"))))
  1811. (add-hook 'term-mode-hook
  1812. (lambda ()
  1813. ;; Stop current line highlighting
  1814. (set-variable 'hl-line-range-function (lambda () '(0 . 0)) t)
  1815. (set-variable 'scroll-margin 0 t)
  1816. ))
  1817. (set-variable 'term-buffer-maximum-size 20480)
  1818. (set-variable 'term-suppress-hard-newline t)
  1819. (add-hook 'Man-mode-hook
  1820. (lambda ()
  1821. (view-mode 1)
  1822. (setq truncate-lines nil)))
  1823. (set-variable 'Man-notify-method (if window-system
  1824. 'newframe
  1825. 'aggressive))
  1826. (set-variable 'woman-cache-filename (expand-file-name (concat user-emacs-directory
  1827. "woman_cache.el")))
  1828. ;; not work because man.el will be loaded when man called
  1829. (defalias 'man 'woman)
  1830. (add-to-list 'auto-mode-alist
  1831. '("/tox\\.ini\\'" . conf-unix-mode))
  1832. (add-to-list 'auto-mode-alist
  1833. '("/setup\\.cfg\\'" . conf-unix-mode))
  1834. (when (fboundp 'toml-mode)
  1835. (add-to-list 'auto-mode-alist
  1836. '("/tox\\.ini\\'" . toml-mode))
  1837. (add-to-list 'auto-mode-alist
  1838. '("/setup\\.cfg\\'" . toml-mode))
  1839. (add-to-list 'auto-mode-alist
  1840. '("/Pipfile\\'" . toml-mode))
  1841. (add-to-list 'auto-mode-alist
  1842. '("/poetry\\.lock\\'" . toml-mode))
  1843. )
  1844. (when (fboundp 'json-mode)
  1845. (add-to-list 'auto-mode-alist
  1846. '("/Pipfile\\.lock\\'" . json-mode)))
  1847. (add-hook 'go-mode-hook
  1848. (lambda()
  1849. (defvar go-mode-map)
  1850. (add-hook 'before-save-hook' 'gofmt-before-save nil t)
  1851. (define-key go-mode-map (kbd "M-.") 'godef-jump)))
  1852. (when (fboundp 'k8s-mode)
  1853. (add-to-list 'auto-mode-alist
  1854. '("\\.k8s\\'" . k8s-mode)))
  1855. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1856. ;; buffers
  1857. (defvar bs-configurations)
  1858. (declare-function bs-set-configuration "bs")
  1859. (declare-function bs-refresh "bs")
  1860. (declare-function bs-message-without-log "bs")
  1861. (declare-function bs--current-config-message "bs")
  1862. (with-eval-after-load 'bs
  1863. (add-to-list 'bs-configurations
  1864. '("specials" "^\\*" nil ".*" nil nil))
  1865. (add-to-list 'bs-configurations
  1866. '("files-and-specials" "^\\*" buffer-file-name ".*" nil nil))
  1867. (defvar bs-mode-map)
  1868. (defvar bs-current-configuration)
  1869. (define-key bs-mode-map (kbd "t")
  1870. ;; TODO: fix toggle feature
  1871. (lambda ()
  1872. (interactive)
  1873. (if (string= "specials"
  1874. bs-current-configuration)
  1875. (bs-set-configuration "files")
  1876. (bs-set-configuration "specials"))
  1877. (bs-refresh)
  1878. (bs-message-without-log "%s"
  1879. (bs--current-config-message))))
  1880. ;; (setq bs-configurations (list
  1881. ;; '("processes" nil get-buffer-process ".*" nil nil)
  1882. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  1883. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  1884. )
  1885. (when (fboundp 'bs-show)
  1886. (defalias 'list-buffers 'bs-show)
  1887. (set-variable 'bs-default-configuration "files-and-specials")
  1888. (set-variable 'bs-default-sort-name "by nothing")
  1889. (add-hook 'bs-mode-hook
  1890. (lambda ()
  1891. (setq-local scroll-margin 0)
  1892. (setq-local header-line-format nil)
  1893. (setq-local mode-line-format nil)
  1894. )))
  1895. ;;(iswitchb-mode 1)
  1896. (icomplete-mode)
  1897. (defun iswitchb-buffer-display-other-window ()
  1898. "Do iswitchb in other window."
  1899. (interactive)
  1900. (let ((iswitchb-default-method 'display))
  1901. (call-interactively 'iswitchb-buffer)))
  1902. ;; buffer killing
  1903. ;; (defun my-delete-window-killing-buffer () nil)
  1904. (defun my-query-kill-current-buffer ()
  1905. "Interactively kill current buffer."
  1906. (interactive)
  1907. (if (y-or-n-p (concat "kill current buffer? :"))
  1908. (kill-buffer (current-buffer))))
  1909. (defun my-force-query-kill-current-buffer ()
  1910. "Interactively kill current buffer."
  1911. (interactive)
  1912. (when (y-or-n-p (concat "kill current buffer? :"))
  1913. (let ((kill-buffer-hook nil)
  1914. (kill-buffer-query-functions nil))
  1915. (kill-buffer (current-buffer)))))
  1916. ;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
  1917. ;; Originally C-x C-k -> kmacro-keymap
  1918. ;; (global-set-key "\C-x\C-k" 'kmacro-keymap)
  1919. (global-set-key (kbd "C-x C-k") 'my-query-kill-current-buffer)
  1920. (substitute-key-definition 'kill-buffer
  1921. 'my-query-kill-current-buffer
  1922. global-map)
  1923. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1924. ;; dired
  1925. (defun my-file-head (filename &optional n)
  1926. "Return list of first N lines of file FILENAME."
  1927. ;; TODO: Fix for janapese text
  1928. ;; TODO: Fix for short text
  1929. (let ((num (or n 10))
  1930. (size 100)
  1931. (beg 0)
  1932. (end 0)
  1933. (result '())
  1934. (read -1))
  1935. (with-temp-buffer
  1936. (erase-buffer)
  1937. (while (or (<= (count-lines (point-min)
  1938. (point-max))
  1939. num)
  1940. (eq read 0))
  1941. (setq end (+ beg size))
  1942. (setq read (nth 1 (insert-file-contents-literally filename
  1943. nil
  1944. beg
  1945. end)))
  1946. (goto-char (point-max))
  1947. (setq beg (+ beg size)))
  1948. (goto-char (point-min))
  1949. (while (< (length result) num)
  1950. (let ((start (point)))
  1951. (forward-line 1)
  1952. (setq result
  1953. `(,@result ,(buffer-substring-no-properties start
  1954. (point))))))
  1955. result
  1956. ;; (buffer-substring-no-properties (point-min)
  1957. ;; (progn
  1958. ;; (forward-line num)
  1959. ;; (point)))
  1960. )))
  1961. ;; (apply 'concat (my-file-head "./shrc" 10)
  1962. (declare-function dired-get-filename "dired" t)
  1963. (defun my-dired-echo-file-head (arg)
  1964. "Echo head of current file.
  1965. ARG is num to show, or defaults to 7."
  1966. (interactive "P")
  1967. (let ((f (dired-get-filename)))
  1968. (message "%s"
  1969. (apply 'concat
  1970. (my-file-head f
  1971. 7)))))
  1972. (declare-function dired-get-marked-files "dired")
  1973. (defun my-dired-diff ()
  1974. "Show diff of marked file and file of current line."
  1975. (interactive)
  1976. (let ((files (dired-get-marked-files nil nil nil t)))
  1977. (if (eq (car files)
  1978. t)
  1979. (diff (cadr files) (dired-get-filename))
  1980. (message "One file must be marked!"))))
  1981. (defun dired-get-file-info ()
  1982. "Print information of current line file."
  1983. (interactive)
  1984. (let* ((file (dired-get-filename t))
  1985. (quoted (shell-quote-argument file)))
  1986. (if (file-directory-p file)
  1987. (progn
  1988. (message "Calculating disk usage...")
  1989. (let ((du (or (executable-find "gdu")
  1990. (executable-find "du")
  1991. (error "du not found"))))
  1992. (shell-command (concat du
  1993. " -hsD "
  1994. quoted))))
  1995. (shell-command (concat "file "
  1996. quoted)))))
  1997. (defun my-dired-scroll-up ()
  1998. "Scroll up."
  1999. (interactive)
  2000. (my-dired-previous-line (- (window-height) 1)))
  2001. (defun my-dired-scroll-down ()
  2002. "Scroll down."
  2003. (interactive)
  2004. (my-dired-next-line (- (window-height) 1)))
  2005. ;; (defun my-dired-forward-line (arg)
  2006. ;; ""
  2007. ;; (interactive "p"))
  2008. (declare-function dired-get-subdir "dired")
  2009. (declare-function dired-move-to-filename "dired")
  2010. (defun my-dired-previous-line (arg)
  2011. "Move ARG lines up."
  2012. (interactive "p")
  2013. (if (> arg 0)
  2014. (progn
  2015. (if (eq (line-number-at-pos)
  2016. 1)
  2017. (goto-char (point-max))
  2018. (forward-line -1))
  2019. (my-dired-previous-line (if (or (dired-get-filename nil t)
  2020. (dired-get-subdir))
  2021. (- arg 1)
  2022. arg)))
  2023. (dired-move-to-filename)))
  2024. (defun my-dired-next-line (arg)
  2025. "Move ARG lines down."
  2026. (interactive "p")
  2027. (if (> arg 0)
  2028. (progn
  2029. (if (eq (point)
  2030. (point-max))
  2031. (goto-char (point-min))
  2032. (forward-line 1))
  2033. (my-dired-next-line (if (or (dired-get-filename nil t)
  2034. (dired-get-subdir))
  2035. (- arg 1)
  2036. arg)))
  2037. (dired-move-to-filename)))
  2038. (defun my-tramp-remote-find-file (f)
  2039. "Open F."
  2040. (interactive (list (read-file-name "My Find File Tramp: "
  2041. "/scp:"
  2042. nil ;; "/scp:"
  2043. (confirm-nonexistent-file-or-buffer))))
  2044. (find-file f))
  2045. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  2046. (if (eq window-system 'mac)
  2047. (setq dired-listing-switches "-lhF")
  2048. (setq dired-listing-switches "-lhF --time-style=long-iso")
  2049. )
  2050. (setq dired-listing-switches "-lhF")
  2051. ;; when using dired-find-alternate-file
  2052. ;; reuse current dired buffer for the file to open
  2053. ;; (put 'dired-find-alternate-file 'disabled nil)
  2054. (set-variable 'dired-ls-F-marks-symlinks t)
  2055. (set-variable 'ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  2056. (set-variable 'ls-lisp-dirs-first t)
  2057. (set-variable 'ls-lisp-use-localized-time-format t)
  2058. (set-variable 'ls-lisp-format-time-list
  2059. '("%Y-%m-%d %H:%M"
  2060. "%Y-%m-%d "))
  2061. (set-variable 'dired-dwim-target t)
  2062. (set-variable 'dired-isearch-filenames t)
  2063. (set-variable 'dired-hide-details-hide-symlink-targets nil)
  2064. (set-variable 'dired-hide-details-hide-information-lines nil)
  2065. (set-variable 'dired-deletion-confirmer 'y-or-n-p)
  2066. (set-variable 'dired-recursive-deletes 'always)
  2067. ;; (add-hook 'dired-after-readin-hook
  2068. ;; 'my-replace-nasi-none)
  2069. (with-eval-after-load 'dired
  2070. (require 'ls-lisp nil t)
  2071. (defvar dired-mode-map (make-sparse-keymap))
  2072. ;; dired-do-chgrp sometimes cause system hung
  2073. (define-key dired-mode-map "G" 'ignore)
  2074. (define-key dired-mode-map "e" 'wdired-change-to-wdired-mode)
  2075. (define-key dired-mode-map "i" 'dired-get-file-info)
  2076. ;; (define-key dired-mode-map "f" 'find-file)
  2077. (define-key dired-mode-map "f" 'my-fzf-or-find-file)
  2078. (define-key dired-mode-map "z" 'fzf)
  2079. (define-key dired-mode-map "!" 'shell-command)
  2080. (define-key dired-mode-map "&" 'async-shell-command)
  2081. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  2082. (define-key dired-mode-map "=" 'my-dired-diff)
  2083. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  2084. (define-key dired-mode-map "b" 'gtkbm)
  2085. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  2086. (define-key dired-mode-map (kbd "TAB") 'other-window)
  2087. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  2088. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  2089. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  2090. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  2091. (substitute-key-definition 'dired-next-line
  2092. 'my-dired-next-line
  2093. dired-mode-map)
  2094. (substitute-key-definition 'dired-previous-line
  2095. 'my-dired-previous-line
  2096. dired-mode-map)
  2097. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  2098. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  2099. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  2100. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  2101. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  2102. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  2103. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  2104. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  2105. (add-hook 'dired-mode-hook
  2106. (lambda ()
  2107. (when (fboundp 'dired-hide-details-mode)
  2108. (dired-hide-details-mode t)
  2109. (local-set-key "l" 'dired-hide-details-mode))
  2110. (let ((file "._Icon\015"))
  2111. (when nil
  2112. '(file-readable-p file)
  2113. (delete-file file)))))
  2114. (when (fboundp 'pack-dired-dwim)
  2115. (with-eval-after-load 'dired
  2116. (define-key dired-mode-map "P" 'pack-dired-dwim)))
  2117. (when (fboundp 'dired-list-all-mode)
  2118. (setq dired-listing-switches "-lhF")
  2119. (with-eval-after-load 'dired
  2120. (define-key dired-mode-map "a" 'dired-list-all-mode))))
  2121. (when (fboundp 'dired-filter-mode)
  2122. (add-hook 'dired-mode-hook
  2123. 'dired-filter-mode))
  2124. (set-variable 'dired-filter-stack nil)
  2125. ;; Currently disabled in favor of dired-from-git-ls-files
  2126. ;; (define-key ctl-x-map "f" 'find-dired)
  2127. (defvar my-dired-git-ls-files-history
  2128. "History for `my-dired-git-ls-files'." nil)
  2129. (defun my-dired-git-ls-files (arg)
  2130. "Dired from git ls-files."
  2131. (interactive (list
  2132. (read-shell-command "git ls-files: "
  2133. "git ls-files -z ")))
  2134. (pop-to-buffer-same-window
  2135. (dired-noselect `(,default-directory
  2136. ,@(split-string (shell-command-to-string arg)
  2137. "\0" t))
  2138. ""))
  2139. )
  2140. (define-key ctl-x-map (kbd "G") 'my-dired-git-ls-files)
  2141. (with-eval-after-load 'dired
  2142. (defvar dired-mode-map (make-sparse-keymap))
  2143. (define-key dired-mode-map "G" 'my-dired-git-ls-files))
  2144. (with-eval-after-load 'pack
  2145. (set-variable 'pack-silence
  2146. t)
  2147. (defvar pack-program-alist)
  2148. (add-to-list 'pack-program-alist
  2149. '("\\.txz\\'" :pack "tar -cJf" :unpack "tar -xf"))
  2150. (when (executable-find "aunpack")
  2151. (add-to-list 'pack-program-alist
  2152. ' ("\\.zip\\'"
  2153. :pack ("zip" "-r" archive sources)
  2154. :pack-append ("zip" "-r" archive sources)
  2155. :unpack ("aunpack" archive))))
  2156. )
  2157. ;; dired-k
  2158. ;; Current HEAD of original repo is broken
  2159. ;; https://github.com/syohex/emacs-dired-k/issues/45
  2160. (declare-function dired-k-no-revert "dired-k")
  2161. (when (fboundp 'dired-k)
  2162. (set-variable 'dired-k-style 'git)
  2163. ;; What is the best way of doing this?
  2164. (with-eval-after-load 'dired-k
  2165. (fset 'dired-k--highlight-by-file-attribyte 'ignore))
  2166. ;; (set-variable 'dired-k-size-colors
  2167. ;; `((,most-positive-fixnum)))
  2168. ;; (set-variable 'dired-k-date-colors
  2169. ;; `((,most-positive-fixnum)))
  2170. (let* ((pkg (cadr (assq 'dired-k
  2171. package-alist)))
  2172. (version-str (package-version-join (package-desc-version pkg))))
  2173. ;; Currently dired-k HEAD of original repository is broken so do not use that
  2174. (when (string= version-str
  2175. "20171017.1228")
  2176. ;; always execute dired-k when dired buffer is opened and reverted
  2177. (add-hook 'dired-after-readin-hook #'dired-k-no-revert)
  2178. ;; This still create index.lock files...........................
  2179. ;; (add-hook 'switch-buffer-functions
  2180. ;; (lambda (prev cur)
  2181. ;; (when (derived-mode-p 'dired-mode)
  2182. ;; (dired-k-no-revert))))
  2183. )))
  2184. ;; (when (eval-and-compile (require 'dired-rainbow nil t))
  2185. ;; (dired-rainbow-define gtags "brightblack" "GTAGS"))
  2186. ;; ?
  2187. ;; (set-variable 'dired-omit-files
  2188. ;; (rx (or (regexp "^\\.?#")
  2189. ;; (regexp "^\\.$")
  2190. ;; (regexp "^\\.\\.$")
  2191. ;; (regexp "^GPATH$")
  2192. ;; (regexp "^GRTAGS$")
  2193. ;; (regexp "^GTAGS$")
  2194. ;; )))
  2195. (with-eval-after-load 'diredfl
  2196. (set-face-foreground 'diredfl-file-name nil)
  2197. )
  2198. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2199. ;; misc funcs
  2200. (define-key ctl-x-map "T" 'git-worktree)
  2201. (define-key ctl-x-map "W" 'git-walktree)
  2202. (when (fboundp 'browse-url-default-macosx-browser)
  2203. (defalias 'browse-osx 'browse-url-default-macosx-browser))
  2204. (defalias 'qcalc 'quick-calc)
  2205. (defun memo (&optional dir)
  2206. "Open memo.txt in DIR."
  2207. (interactive)
  2208. (pop-to-buffer (find-file-noselect (concat (if dir
  2209. (file-name-as-directory dir)
  2210. "")
  2211. "memo.txt"))))
  2212. ;; TODO: remember-projectile
  2213. (set (defvar my-privnotes-path nil
  2214. "My privnotes repository path.")
  2215. (expand-file-name "~/my/privnotes"))
  2216. (defun my-privnotes-readme (dir)
  2217. "Open my privnotes DIR."
  2218. (interactive (list
  2219. (read-file-name "Privnotes: "
  2220. (expand-file-name (format-time-string "%Y%m%d_")
  2221. my-privnotes-path))))
  2222. (let ((path (expand-file-name "README.md" dir)))
  2223. (with-current-buffer (find-file path)
  2224. (unless (file-exists-p path)
  2225. (insert (file-name-base dir)
  2226. "\n"
  2227. "=======\n"
  2228. "\n\n")))))
  2229. (define-key ctl-x-map "p" 'my-privnotes-readme)
  2230. (set (defvar my-rgrep-alist nil
  2231. "Alist of rgrep command.
  2232. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  2233. condition to choose COMMAND when evaluated.")
  2234. `(
  2235. ;; ripgrep
  2236. ("rg"
  2237. (executable-find "rg")
  2238. "rg -nH --no-heading --hidden --glob '!.git/' --smart-case -M 1280 ")
  2239. ;; git grep
  2240. ("gitgrep"
  2241. (eq 0
  2242. (shell-command "git rev-parse --git-dir"))
  2243. "git --no-pager grep -nH -e ")
  2244. ;; sift
  2245. ("sift"
  2246. (executable-find "sift")
  2247. ("sift --binary-skip --filename --line-number --git --smart-case "))
  2248. ;; the silver searcher
  2249. ("ag"
  2250. (executable-find "ag")
  2251. "ag --nogroup --nopager --filename ")
  2252. ;; ack
  2253. ("ack"
  2254. (executable-find "ack")
  2255. "ack --nogroup --nopager --with-filename ")
  2256. ;; gnu global
  2257. ("global"
  2258. (and (require 'ggtags nil t)
  2259. (executable-find "global")
  2260. (ggtags-current-project-root))
  2261. "global --result grep ")
  2262. ;; grep
  2263. ("grep"
  2264. t
  2265. ,(concat "find . "
  2266. "-path '*/.git' -prune -o "
  2267. "-path '*/.svn' -prune -o "
  2268. "-type f -print0 | "
  2269. "xargs -0 grep -nH -e "))
  2270. )
  2271. )
  2272. (defvar my-rgrep-default nil
  2273. "Default command name for my-rgrep.")
  2274. (defun my-rgrep-grep-command (&optional name alist)
  2275. "Return recursive grep command for current directory or nil.
  2276. If NAME is given, use that without testing.
  2277. Commands are searched from ALIST."
  2278. (if alist
  2279. (if name
  2280. ;; if name is given search that from alist and return the command
  2281. (nth 2 (assoc name
  2282. alist))
  2283. ;; if name is not given try test in 1th elem
  2284. (let ((car (car alist))
  2285. (cdr (cdr alist)))
  2286. (if (eval (nth 1 car))
  2287. ;; if the condition is true return the command
  2288. (nth 2 car)
  2289. ;; try next one
  2290. (and cdr
  2291. (my-rgrep-grep-command name cdr)))))
  2292. ;; if alist is not given set default value
  2293. (my-rgrep-grep-command name my-rgrep-alist)))
  2294. (declare-function projectile-project-p "projectile")
  2295. (declare-function projectile-with-default-dir "projectile")
  2296. (declare-function projectile-project-root "projectile")
  2297. (defun my-rgrep (command-args)
  2298. "My recursive grep. Run COMMAND-ARGS.
  2299. If prefix argument is given, use current symbol as default search target
  2300. and search from projectile root (if projectile is available)."
  2301. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  2302. nil)))
  2303. (if cmd
  2304. (list (read-shell-command "grep command: "
  2305. (concat cmd
  2306. (if current-prefix-arg
  2307. (thing-at-point 'symbol t)
  2308. ""))
  2309. 'grep-find-history))
  2310. (error "My-Rgrep: Command for rgrep not found")
  2311. )))
  2312. (if (and current-prefix-arg
  2313. (eval-and-compile (require 'projectile nil t))
  2314. (projectile-project-p))
  2315. (projectile-with-default-dir (projectile-project-root)
  2316. (compilation-start command-args
  2317. 'grep-mode))
  2318. (compilation-start command-args
  2319. 'grep-mode)))
  2320. (defun my-rgrep-thing-at-point-projectile-root ()
  2321. "My recursive grep to find thing at point from project root."
  2322. (interactive)
  2323. (let* ((cmd (my-rgrep-grep-command my-rgrep-default
  2324. nil))
  2325. (command-args
  2326. (if cmd
  2327. (concat cmd
  2328. (or (thing-at-point 'symbol t)
  2329. (error "No symbol at point")))
  2330. (error "My-Rgrep: Command for rgrep not found"))))
  2331. (if (eval-and-compile (require 'projectile nil t))
  2332. (projectile-with-default-dir (or (projectile-project-root)
  2333. default-directory)
  2334. (compilation-start command-args
  2335. 'grep-mode))
  2336. (compilation-start command-args
  2337. 'grep-mode))))
  2338. (defmacro define-my-rgrep (name)
  2339. "Define rgrep for NAME."
  2340. `(defun ,(intern (concat "my-rgrep-"
  2341. name)) ()
  2342. ,(format "My recursive grep by %s."
  2343. name)
  2344. (interactive)
  2345. (let ((my-rgrep-default ,name))
  2346. (if (called-interactively-p 'any)
  2347. (call-interactively 'my-rgrep)
  2348. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  2349. )
  2350. (define-my-rgrep "ack")
  2351. (define-my-rgrep "ag")
  2352. (define-my-rgrep "rg")
  2353. (define-my-rgrep "sift")
  2354. (define-my-rgrep "gitgrep")
  2355. (define-my-rgrep "grep")
  2356. (define-my-rgrep "global")
  2357. (define-key ctl-x-map "s" 'my-rgrep)
  2358. (define-key ctl-x-map "." 'my-rgrep-thing-at-point-projectile-root)
  2359. (defun my-occur (regexp &optional region)
  2360. "My occur command to search REGEXP to search REGION."
  2361. (interactive (list (read-string "List lines matching regexp: "
  2362. (thing-at-point 'symbol t))))
  2363. (occur regexp nil region))
  2364. (define-key ctl-x-map (kbd "C-o") 'my-occur)
  2365. (set-variable 'dumb-jump-prefer-searcher 'rg)
  2366. (defalias 'make 'compile)
  2367. (define-key ctl-x-map "c" 'compile)
  2368. (autoload 'pb/push-item "pushbullet")
  2369. (defun my-pushbullet-note (text &optional title)
  2370. "Push TEXT with optional TITLE."
  2371. (interactive "sText to Push: ")
  2372. (pb/push-item '("") text "note" (or title "")))
  2373. ;;;;;;;;;;;;;;;;;;;;;
  2374. ;; git-bug
  2375. (defconst git-bug-ls-regexp
  2376. (eval-when-compile
  2377. (rx bol
  2378. (submatch (one-or-more alphanumeric)) ; id
  2379. ;; (one-or-more any)
  2380. (one-or-more space)
  2381. (submatch (or "open" "close")) ; status
  2382. (one-or-more space)
  2383. (submatch (maximal-match (zero-or-more print))) ; title
  2384. "\t"
  2385. (submatch (one-or-more alphanumeric)) ; user
  2386. (one-or-more space)
  2387. "C:"
  2388. (submatch (one-or-more digit)) ; Comment num
  2389. (one-or-more space)
  2390. "L:"
  2391. (submatch (one-or-more digit)) ; Label num
  2392. eol
  2393. ))
  2394. "Regexp to parse line of output of git-bug ls.
  2395. Used by `git-bug-ls'.")
  2396. (declare-function string-trim "subr-x")
  2397. (defun git-bug-bugs ()
  2398. "Get list of git-bug bugs."
  2399. (with-temp-buffer
  2400. (git-bug--call-process "bug" "ls")
  2401. (goto-char (point-min))
  2402. (let ((bugs nil))
  2403. (while (not (eq (point) (point-max)))
  2404. (save-match-data
  2405. (when (re-search-forward git-bug-ls-regexp (point-at-eol) t)
  2406. (setq bugs `(,@bugs
  2407. ,(list
  2408. :id (match-string 1)
  2409. :status (match-string 2)
  2410. :title (string-trim (match-string 3))
  2411. :user (match-string 4)
  2412. :comment-num (match-string 5)
  2413. :label-num (match-string 6)
  2414. )))))
  2415. (forward-line 1)
  2416. (goto-char (point-at-bol)))
  2417. bugs)))
  2418. (defun git-bug-ls ()
  2419. "Open and select git bug list buffer."
  2420. (interactive)
  2421. (pop-to-buffer (git-bug-ls-noselect)))
  2422. (defun git-bug-ls--set-tabulated-list-mode-variables ()
  2423. "Not implemented.")
  2424. (defun git-bug-ls-mode ()
  2425. "Not implemented.")
  2426. (defun git-bug-ls-noselect (&optional directory)
  2427. "Open git bug list buffer.
  2428. If optional arg DIRECTORY is given change current directory to there before
  2429. initializing."
  2430. (setq directory (expand-file-name (or directory
  2431. default-directory)))
  2432. (cl-assert (file-directory-p directory))
  2433. (let* ((root (git-bug--get-repository-root directory))
  2434. (name (file-name-nondirectory root))
  2435. (bname (format "*GitBug<%s>*" name)))
  2436. (with-current-buffer (get-buffer-create bname)
  2437. (cd root)
  2438. (git-bug-ls--set-tabulated-list-mode-variables)
  2439. (git-bug-ls-mode)
  2440. (current-buffer))))
  2441. (defun git-bug--get-repository-root (dir)
  2442. "Resolve repository root of DIR.
  2443. If DIR is not inside of any git repository, signal an error."
  2444. (cl-assert (file-directory-p dir))
  2445. (with-temp-buffer
  2446. (cd dir)
  2447. (git-bug--call-process "rev-parse" "--show-toplevel")
  2448. (goto-char (point-min))
  2449. (buffer-substring-no-properties (point-at-bol) (point-at-eol))))
  2450. (defun git-bug--call-process (&rest args)
  2451. "Start git process synchronously with ARGS.
  2452. Raise error when git process ends with non-zero status.
  2453. Any output will be written to current buffer."
  2454. (let ((status (apply 'call-process
  2455. "git"
  2456. nil
  2457. t
  2458. nil
  2459. args)))
  2460. (cl-assert (eq status 0)
  2461. nil
  2462. (buffer-substring-no-properties (point-min) (point-max)))))
  2463. ;;;;;;;;;;;;;;;;;;;
  2464. ;; peek-file-mode
  2465. (defvar peek-file-buffers
  2466. ()
  2467. "Peek buffers.")
  2468. (defun peek-file (file)
  2469. "Peek FILE."
  2470. (interactive "fFile to peek: ")
  2471. (with-current-buffer (find-file file)
  2472. (peek-file-mode)))
  2473. (define-minor-mode peek-file-mode
  2474. "Peek file mode."
  2475. :lighter "PK"
  2476. (view-mode peek-file-mode)
  2477. (add-to-list 'peek-file-buffers
  2478. (current-buffer))
  2479. (add-hook 'switch-buffer-functions
  2480. 'peek-file-remove-buffers))
  2481. (defun peek-file-remove-buffers (&args _)
  2482. "Remove peek file buffers."
  2483. (cl-dolist (buf (cl-copy-list peek-file-buffers))
  2484. (unless (get-buffer-window buf t)
  2485. (setq peek-file-buffers
  2486. (delq buf
  2487. peek-file-buffers))
  2488. (with-current-buffer buf
  2489. (when peek-file-mode
  2490. (kill-buffer))))))
  2491. ;;;;;;;;;;;;;;;;;;;;
  2492. ;; remember-projectile
  2493. ;; TODO: Add global-minor-mode
  2494. (defvar remember-data-file)
  2495. (defun my-set-remember-data-file-buffer-local ()
  2496. "Set `remember-data-file'."
  2497. (when (require 'projectile nil t)
  2498. (setq-local remember-data-file
  2499. (expand-file-name ".remember.notes"
  2500. (projectile-project-root)))))
  2501. (add-hook 'after-change-major-mode-hook
  2502. 'my-set-remember-data-file-buffer-local)
  2503. (define-key ctl-x-map "R" 'remember)
  2504. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2505. ;; ivy
  2506. ;; (set-variable 'enable-recursive-minibuffers t)
  2507. ;; (minibuffer-depth-indicate-mode 1)
  2508. (declare-function ivy--regex-ignore-order "ivy")
  2509. (declare-function ivy--regex-fuzzy "ivy")
  2510. (defun my--ivy-regex-fuzzy-ignore-order (str)
  2511. "Re-build regex from STR for ignore-order fuzzy match."
  2512. (let ((re-list (ivy--regex-ignore-order str)))
  2513. (if (listp re-list)
  2514. (mapcar (lambda (e)
  2515. (let ((head (car e))
  2516. (tail (cdr e)))
  2517. (if tail
  2518. (cons (ivy--regex-fuzzy head)
  2519. tail)
  2520. (cons head tail))))
  2521. re-list)
  2522. (ivy--regex-fuzzy re-list))))
  2523. ;; (my--ivy-regex-fuzzy-ignore-order "ab bc !cee")
  2524. ;; (ivy--regex-fuzzy "ab")
  2525. ;; (ivy--regex-ignore-order "a b")
  2526. (set-variable 'ivy-re-builders-alist
  2527. '((t . my--ivy-regex-fuzzy-ignore-order)))
  2528. ;; (set-variable 'ivy-format-functions-alist
  2529. ;; '((t . ivy-format-function-arrow)))
  2530. (set-variable 'ivy-format-functions-alist
  2531. '((t . (lambda (cands) (ivy--format-function-generic
  2532. (lambda (str)
  2533. (concat "+> "
  2534. (ivy--add-face str 'ivy-current-match)
  2535. ))
  2536. (lambda (str)
  2537. (concat "| " str))
  2538. cands
  2539. "\n")))))
  2540. (set-variable 'ivy-wrap t)
  2541. (set-variable 'ivy-sort-max-size 500)
  2542. (when (fboundp 'ivy-rich-mode)
  2543. (ivy-rich-mode 1))
  2544. (with-eval-after-load 'ivy
  2545. (defvar ivy-minibuffer-map)
  2546. (define-key ivy-minibuffer-map (kbd "C-u")
  2547. (lambda () (interactive) (delete-region (point-at-bol) (point)))))
  2548. (set-variable 'ivy-on-del-error-function 'ignore)
  2549. (when (fboundp 'counsel-M-x)
  2550. (define-key esc-map "x" 'counsel-M-x)
  2551. ;; (counsel-mode 1)
  2552. ;; counsel-fzf executes fzf -f QUERY for each input
  2553. ;; (define-key ctl-x-map "f"
  2554. ;; (lambda ()
  2555. ;; (interactive
  2556. ;; (let ((process-environment (cl-copy-list process-environment)))
  2557. ;; (setenv "FZF_DEFAULT_COMMAND" nil)
  2558. ;; (counsel-fzf)))))
  2559. )
  2560. ;; (when (fboundp 'counsel-switch-buffer)
  2561. ;; (define-key ctl-x-map (kbd "C-b") 'counsel-switch-buffer))
  2562. (declare-function ivy-thing-at-point "ivy")
  2563. (when (and (fboundp 'ivy-read)
  2564. (locate-library "counsel"))
  2565. (defvar counsel-describe-map)
  2566. (defun my-counsel-describe-symbol ()
  2567. "Forwaord to `describe-symbol'."
  2568. (interactive)
  2569. (cl-assert (eval-and-compile (require 'help-mode nil t))) ;; describe-symbol-backends
  2570. (cl-assert (eval-and-compile (require 'counsel nil t)))
  2571. (ivy-read "Describe symbol: " obarray
  2572. ;; From describe-symbol definition
  2573. :predicate (lambda (vv)
  2574. (cl-some (lambda (x) (funcall (nth 1 x) vv))
  2575. describe-symbol-backends))
  2576. :require-match t
  2577. :history 'counsel-describe-symbol-history
  2578. :keymap counsel-describe-map
  2579. :preselect (ivy-thing-at-point)
  2580. :action (lambda (x)
  2581. (describe-symbol (intern x)))
  2582. :caller 'my-counsel-describe-symbol))
  2583. (define-key help-map "o" 'my-counsel-describe-symbol)
  2584. )
  2585. ;; (defun my-ivy-length (x y)
  2586. ;; "Ivy sort to order by string length."
  2587. ;; (<= (length (if (consp x) (car x) x))
  2588. ;; (length (if (consp y) (car y) y))))
  2589. ;; (my-ivy-length "a" (cons "bc" t))
  2590. ;; (my-ivy-length "a" (cons "c" t))
  2591. (declare-function ivy-configure "ivy")
  2592. (with-eval-after-load 'counsel ;; Hook to counsel, not ivy
  2593. ;; (ivy-configure 'my-counsel-describe-symbol
  2594. ;; :sort-fn 'my-ivy-length)
  2595. (ivy-configure 'counsel-M-x
  2596. :initial-input ""
  2597. ;; :sort-fn 'my-ivy-length
  2598. )
  2599. (defvar ivy-sort-matches-functions-alist)
  2600. (add-to-list 'ivy-sort-matches-functions-alist
  2601. '(my-counsel-describe-symbol . ivy--shorter-matches-first))
  2602. (add-to-list 'ivy-sort-matches-functions-alist
  2603. '(counsel-M-x . ivy--shorter-matches-first))
  2604. )
  2605. (when (fboundp 'counsel-imenu)
  2606. (define-key ctl-x-map "l" 'counsel-imenu))
  2607. (when (fboundp 'swiper)
  2608. (define-key esc-map (kbd "C-s") 'swiper))
  2609. ;; ?
  2610. (define-key input-decode-map "\e[1;5C" [C-right])
  2611. (define-key input-decode-map "\e[1;5D" [C-left])
  2612. ;;;;;;;;;;;;;;;;;;;;;;;;
  2613. ;; mozc
  2614. (global-set-key (kbd "C-c m e") 'ignore)
  2615. (global-set-key (kbd "C-c m d") 'ignore)
  2616. ;; mozc
  2617. (when (locate-library "mozc")
  2618. ;; https://tottoto.net/mac-emacs-karabiner-elements-japanese-input-method-config/
  2619. (with-eval-after-load 'mozc
  2620. ;; (define-key mozc-mode-map (kbd "C-h") 'backward-delete-char)
  2621. ;; (define-key mozc-mode-map (kbd "C-p") (kbd "<up>"))
  2622. ;; (define-key mozc-mode-map (kbd "C-n") (kbd "SPC"))
  2623. )
  2624. (setq default-input-method "japanese-mozc")
  2625. (custom-set-variables '(mozc-leim-title "あ"))
  2626. (defun turn-on-input-method ()
  2627. (interactive)
  2628. (activate-input-method default-input-method))
  2629. (defun turn-off-input-method ()
  2630. (interactive)
  2631. (deactivate-input-method))
  2632. ;; (setq mozc-candidate-style 'echo-area)
  2633. (global-set-key (kbd "C-c m e") 'turn-on-input-method)
  2634. (global-set-key (kbd "C-c m d") 'turn-off-input-method)
  2635. (global-set-key (kbd "<f7>") 'turn-off-input-method)
  2636. (global-set-key (kbd "<f8>") 'turn-on-input-method)
  2637. (require 'mozc-popup)
  2638. (set-variable 'mozc-candidate-style 'popup)
  2639. ;; これいる?
  2640. (when (require 'mozc-im nil t)
  2641. (setq default-input-method "japanese-mozc-im")
  2642. ;; (global-set-key (kbd "C-j") 'toggle-input-method)
  2643. )
  2644. )
  2645. ;;;;;;;;;;;;;;
  2646. ;; mmv
  2647. ;; https://www.emacswiki.org/emacs/MakingMarkVisible
  2648. ;;;; Make the mark visible, and the visibility toggleable. ('mmv' means 'make
  2649. ;;;; mark visible'.) By Patrick Gundlach, Teemu Leisti, and Stefan.
  2650. (defgroup mmv nil
  2651. "Make mark visible."
  2652. :group 'tools)
  2653. (defvar mmv-face-foreground
  2654. (face-foreground 'hi-yellow)
  2655. "Foreground color for `mmv-face'.")
  2656. (defvar mmv-face-background
  2657. (face-background 'hi-yellow)
  2658. "Background color for `mmv-face'.")
  2659. (defface mmv-face
  2660. `((t :background ,mmv-face-background :foreground ,mmv-face-foreground))
  2661. "Face used for showing the mark's position."
  2662. :group 'mmv)
  2663. (defvar-local mmv-mark-overlay nil
  2664. "The overlay for showing the mark's position.")
  2665. (defvar-local mmv-is-mark-visible t
  2666. "The overlay is visible only when this variable's value is t.")
  2667. (defun mmv-draw-mark (&rest _)
  2668. "Make the mark's position stand out by means of a one-character-long overlay.
  2669. If the value of variable `mmv-is-mark-visible' is nil, the mark will be
  2670. invisible."
  2671. (unless mmv-mark-overlay
  2672. (setq mmv-mark-overlay (make-overlay 0 0 nil t))
  2673. (overlay-put mmv-mark-overlay 'face 'mmv-face)
  2674. (overlay-put mmv-mark-overlay 'priority 10)) ;; bigger than highlight-indentation-current-column-overlay-priority
  2675. (let ((mark-position (mark t)))
  2676. (cond
  2677. ((null mark-position) (delete-overlay mmv-mark-overlay))
  2678. ((and (< mark-position (point-max))
  2679. (not (eq ?\n (char-after mark-position))))
  2680. (overlay-put mmv-mark-overlay 'after-string nil)
  2681. (move-overlay mmv-mark-overlay mark-position (1+ mark-position)))
  2682. (t
  2683. ;; This branch is called when the mark is at the end of a line or at the
  2684. ;; end of the buffer. We use a bit of trickery to avoid the higlight
  2685. ;; extending from the mark all the way to the right end of the frame.
  2686. (overlay-put mmv-mark-overlay 'after-string
  2687. (propertize " " 'face (overlay-get mmv-mark-overlay 'face)))
  2688. (move-overlay mmv-mark-overlay mark-position mark-position)))))
  2689. ;; Makes display very slow?
  2690. (add-hook 'pre-redisplay-functions #'mmv-draw-mark)
  2691. (defun mmv-toggle-mark-visibility ()
  2692. "Toggles the mark's visiblity and redraws it (whether invisible or visible)."
  2693. (interactive)
  2694. (setq mmv-is-mark-visible (not mmv-is-mark-visible))
  2695. (if mmv-is-mark-visible
  2696. (set-face-attribute 'mmv-face nil :background mmv-face-background :foreground mmv-face-foreground)
  2697. (set-face-attribute 'mmv-face nil :background 'unspecified :foreground 'unspecified))
  2698. (mmv-draw-mark))
  2699. ;; Local Variables:
  2700. ;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
  2701. ;; flycheck-checker: emacs-lisp
  2702. ;; End:
  2703. ;;; emancs.el ends here