Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

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