Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

2101 righe
71 KiB

  1. ;;; emacs.el --- 10sr emacs initialization
  2. ;;; Commentary:
  3. ;;; Code:
  4. ;; SETUP_LOAD: (let ((file "DOTFILES_DIR/emacs.el"))
  5. ;; SETUP_LOAD: (and (file-readable-p file)
  6. ;; SETUP_LOAD: (load-file file)))
  7. (setq debug-on-error t)
  8. ;; make directories
  9. (unless (file-directory-p (expand-file-name user-emacs-directory))
  10. (make-directory (expand-file-name user-emacs-directory)))
  11. (let ((d (expand-file-name (concat user-emacs-directory
  12. "lisp"))))
  13. (unless (file-directory-p d)
  14. (make-directory d))
  15. (add-to-list 'load-path d))
  16. (require 'cl-lib)
  17. (require 'simple)
  18. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  19. ;; Some macros for internals
  20. ;; `emacs --load emacs.el` with Emacs 24.3 requires with-eval-after-load to be
  21. ;; defined at the toplevel (means that it should not be defined inside of some
  22. ;; special forms like `when'. I do not now how to do with about this...)
  23. (unless (fboundp 'with-eval-after-load)
  24. ;; polyfill for Emacs < 24.4
  25. (defmacro with-eval-after-load (file &rest body)
  26. "After FILE is loaded execute BODY."
  27. (declare (indent 1) (debug t))
  28. `(eval-after-load ,file (quote (progn ,@body)))))
  29. (defun call-after-init (func)
  30. "If `after-init-hook' has been run, call FUNC immediately.
  31. Otherwize hook it."
  32. (if after-init-time
  33. (funcall func)
  34. (add-hook 'after-init-hook
  35. func)))
  36. (defmacro safe-require-or-eval (feature)
  37. "Require FEATURE if available.
  38. At compile time the feature will be loaded immediately."
  39. `(eval-and-compile
  40. (require ,feature nil t)))
  41. (defmacro autoload-eval-lazily (feature &optional functions &rest body)
  42. "Define autoloading FEATURE that defines FUNCTIONS.
  43. FEATURE is a symbol. FUNCTIONS is a list of symbols. If FUNCTIONS is nil,
  44. the function same as FEATURE is defined as autoloaded function. BODY is passed
  45. to `eval-after-load'.
  46. After this macro is expanded, this returns the path to library if FEATURE
  47. found, otherwise returns nil."
  48. (declare (indent 2) (debug t))
  49. (let* ((libname (symbol-name (eval feature)))
  50. (libpath (locate-library libname)))
  51. `(progn
  52. (when (locate-library ,libname)
  53. ,@(mapcar (lambda (f)
  54. `(unless (fboundp ',f)
  55. (progn
  56. (message "Autoloaded function `%S' defined (%s)"
  57. (quote ,f)
  58. ,libpath)
  59. (autoload (quote ,f)
  60. ,libname
  61. ,(concat "Autoloaded function defined in \""
  62. libpath
  63. "\".")
  64. t))))
  65. (or (eval functions)
  66. `(,(eval feature)))))
  67. (eval-after-load ,feature
  68. (quote (progn
  69. ,@body)))
  70. (locate-library ,libname))))
  71. (when (autoload-eval-lazily 'tetris nil
  72. (message "Tetris loaded!"))
  73. (message "Tetris found!"))
  74. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  75. ;; download library from web
  76. (defvar fetch-library-enabled-p t
  77. "Set nil to skip downloading with `fetch-library'.")
  78. (defun fetch-library (url &optional byte-compile-p force-download-p)
  79. "Download a library from URL and locate it in \"~/emacs.d/lisp/\".
  80. Return nil if library unfound and failed to download,
  81. otherwise the path where the library installed.
  82. If BYTE-COMPILE-P is t byte compile the file after downloading.
  83. If FORCE-DOWNLOAD-P it t ignore exisiting library and always download.
  84. This function also checks the value of `fetch-library-enabled-p' and do not
  85. fetch libraries if this value is nil. In this case all arguments (including
  86. FORCE-DOWNLOAD-P) will be ignored."
  87. (let* ((dir (expand-file-name (concat user-emacs-directory "lisp/")))
  88. (lib (file-name-sans-extension (file-name-nondirectory url)))
  89. (lpath (concat dir lib ".el"))
  90. (locate-p (locate-library lib)))
  91. (if (and fetch-library-enabled-p
  92. (or force-download-p
  93. (not locate-p)))
  94. (if (progn (message "Downloading %s..."
  95. url)
  96. (download-file url
  97. lpath
  98. t))
  99. (progn (message "Downloading %s...done"
  100. url)
  101. (when (and byte-compile-p
  102. (require 'bytecomp nil t))
  103. (and (file-exists-p (byte-compile-dest-file lpath))
  104. (delete-file (byte-compile-dest-file lpath)))
  105. (message "Byte-compiling %s..."
  106. lpath)
  107. (byte-compile-file lpath)
  108. (message "Byte-compiling %s...done"
  109. lpath)))
  110. (progn (and (file-writable-p lpath)
  111. (delete-file lpath))
  112. (message "Downloading %s...failed"
  113. url))))
  114. (locate-library lib)))
  115. ;; If EMACS_EL_DRY_RUN is set and it is not an empty string, fetch-library
  116. ;; does not actually fetch library.
  117. (let ((dryrun (getenv "EMACS_EL_DRY_RUN")))
  118. (when (and dryrun
  119. (< 0
  120. (length dryrun)))
  121. (setq fetch-library-enabled-p
  122. nil)
  123. (message "EMACS_EL_DRY_RUN is set. Skip fetching libraries.")))
  124. (defun download-file (url path &optional ok-if-already-exists)
  125. "Download file from URL and output to PATH.
  126. IF OK-IF-ALREADY-EXISTS is true force download."
  127. (let ((curl (executable-find "curl"))
  128. (wget (executable-find "wget")))
  129. (cond (wget
  130. (if (and (not ok-if-already-exists)
  131. (file-exists-p path))
  132. nil
  133. (and (eq 0
  134. (call-process wget
  135. nil
  136. nil
  137. nil
  138. "-O"
  139. path
  140. url
  141. ))
  142. path)))
  143. (curl
  144. (if (and (not ok-if-already-exists)
  145. (file-exists-p path))
  146. nil
  147. (and (eq 0
  148. (call-process curl
  149. nil
  150. nil
  151. nil
  152. "--output"
  153. path
  154. "-L"
  155. url
  156. ))
  157. path)))
  158. (t
  159. (ignore-errors
  160. (require 'url)
  161. (url-copy-file url
  162. path
  163. ok-if-already-exists)
  164. path)))))
  165. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  166. ;; package
  167. (set (defvar 10sr-package-list)
  168. '(
  169. markdown-mode
  170. yaml-mode
  171. gnuplot-mode
  172. erlang
  173. js2-mode
  174. git-commit
  175. gitignore-mode
  176. ;; ack
  177. color-moccur
  178. ggtags
  179. flycheck
  180. ;; is flymake installs are required?
  181. ;;flymake-jshint
  182. ;;flymake-python-pyflakes
  183. xclip
  184. foreign-regexp
  185. multi-term
  186. term-run
  187. editorconfig
  188. git-ps1-mode
  189. restart-emacs
  190. fill-column-indicator
  191. pkgbuild-mode
  192. minibuffer-line
  193. scala-mode2
  194. ensime
  195. editorconfig
  196. git-command
  197. prompt-text
  198. ;; 10sr repository
  199. ;; 10sr-extras
  200. terminal-title
  201. recentf-show
  202. dired-list-all-mode
  203. pack
  204. set-modeline-color
  205. read-only-only-mode
  206. smart-revert
  207. autosave
  208. ;;window-organizer
  209. remember-major-modes-mode
  210. ilookup
  211. pasteboard
  212. ))
  213. (when (safe-require-or-eval 'package)
  214. (setq package-archives
  215. `(,@package-archives
  216. ("melpa" . "https://melpa.org/packages/")
  217. ("10sr-el" . "https://10sr.github.io/emacs-lisp/p/")))
  218. (package-initialize)
  219. (defun my-auto-install-package ()
  220. "Install packages semi-automatically."
  221. (interactive)
  222. (package-refresh-contents)
  223. (mapc (lambda (pkg)
  224. (or (package-installed-p pkg)
  225. (locate-library (symbol-name pkg))
  226. (package-install pkg)))
  227. 10sr-package-list))
  228. )
  229. ;; (lazy-load-eval 'sudoku)
  230. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  231. ;; my-idle-hook
  232. (defvar my-idle-hook nil
  233. "Hook run when idle for several secs.")
  234. (defvar my-idle-hook-sec 5
  235. "Second to run `my-idle-hook'.")
  236. (run-with-idle-timer my-idle-hook-sec
  237. t
  238. (lambda ()
  239. (run-hooks 'my-idle-hook)))
  240. ;; (add-hook 'my-idle-hook
  241. ;; (lambda ()
  242. ;; (message "idle hook message")))
  243. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  244. ;; start and quit
  245. (setq inhibit-startup-message t)
  246. (setq confirm-kill-emacs 'y-or-n-p)
  247. (setq gc-cons-threshold (* 1024 1024 4))
  248. (when window-system
  249. (add-to-list 'default-frame-alist '(cursor-type . box))
  250. (add-to-list 'default-frame-alist '(background-color . "white"))
  251. (add-to-list 'default-frame-alist '(foreground-color . "gray10"))
  252. ;; (add-to-list 'default-frame-alist '(alpha . (80 100 100 100)))
  253. ;; does not work?
  254. )
  255. ;; (add-to-list 'default-frame-alist '(cursor-type . box))
  256. (if window-system (menu-bar-mode 1) (menu-bar-mode 0))
  257. (and (fboundp 'tool-bar-mode)
  258. (tool-bar-mode 0))
  259. (and (fboundp 'set-scroll-bar-mode)
  260. (set-scroll-bar-mode nil))
  261. (add-hook 'kill-emacs-hook
  262. ;; load init file when terminating emacs to ensure file is not broken
  263. 'reload-init-file)
  264. (defun my-force-kill-emacs ()
  265. "My force kill Emacs."
  266. (interactive)
  267. (let ((kill-emacs-hook nil))
  268. (kill-emacs)))
  269. (call-after-init
  270. (lambda ()
  271. (message "%s %s" invocation-name emacs-version)
  272. (message "%s was taken to initialize emacs." (emacs-init-time))
  273. (switch-to-buffer "*Messages*")))
  274. (cd ".") ; when using windows use / instead of \ in `default-directory'
  275. ;; locale
  276. (set-language-environment "Japanese")
  277. (set-default-coding-systems 'utf-8-unix)
  278. (prefer-coding-system 'utf-8-unix)
  279. (setq system-time-locale "C")
  280. ;; my prefix map
  281. (defvar my-prefix-map nil
  282. "My prefix map.")
  283. (define-prefix-command 'my-prefix-map)
  284. (define-key ctl-x-map (kbd "C-x") 'my-prefix-map)
  285. (define-key my-prefix-map (kbd "C-q") 'quoted-insert)
  286. (define-key my-prefix-map (kbd "C-z") 'suspend-frame)
  287. ;; (comint-show-maximum-output)
  288. ;; kill scratch
  289. (call-after-init (lambda ()
  290. (let ((buf (get-buffer "*scratch*")))
  291. (when buf
  292. (kill-buffer buf)))))
  293. ;; modifier keys
  294. ;; (setq mac-option-modifier 'control)
  295. ;; display
  296. (setq visible-bell t)
  297. (setq ring-bell-function 'ignore)
  298. (mouse-avoidance-mode 'banish)
  299. (setq echo-keystrokes 0.1)
  300. (defun reload-init-file ()
  301. "Reload Emacs init file."
  302. (interactive)
  303. (when (and user-init-file
  304. (file-readable-p user-init-file))
  305. (load-file user-init-file)))
  306. (safe-require-or-eval 'session)
  307. ;; server
  308. (when (safe-require-or-eval 'server)
  309. (setq server-name (concat "server"
  310. (number-to-string (emacs-pid))))
  311. ;; In Cygwin Environment `server-runnning-p' stops when server-use-tcp is nil
  312. ;; In Darwin environment, init fails with message like 'Service name too long'
  313. ;; when server-use-tcp is nil
  314. (when (or (eq system-type
  315. 'cygwin)
  316. (eq system-type
  317. 'darwin))
  318. (setq server-use-tcp t))
  319. (server-start))
  320. ;; MSYS2 fix
  321. (when (eq system-type
  322. 'windows-nt)
  323. (setq shell-file-name
  324. (executable-find "bash"))
  325. '(setq function-key-map
  326. `(,@function-key-map ([pause] . [?\C-c])
  327. ))
  328. (define-key key-translation-map
  329. (kbd "<pause>")
  330. (kbd "C-c"))
  331. '(keyboard-translate [pause]
  332. (kbd "C-c")p)
  333. ;; TODO: move to other place later
  334. (when (not window-system)
  335. (setq interprogram-paste-function nil)
  336. (setq interprogram-cut-function nil)))
  337. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  338. ;; global keys
  339. (global-set-key (kbd "<up>") 'scroll-down-line)
  340. (global-set-key (kbd "<down>") 'scroll-up-line)
  341. (global-set-key (kbd "<left>") 'scroll-down)
  342. (global-set-key (kbd "<right>") 'scroll-up)
  343. ;; (define-key my-prefix-map (kbd "C-h") help-map)
  344. (global-set-key (kbd "C-\\") help-map)
  345. (define-key ctl-x-map (kbd "DEL") help-map)
  346. (define-key ctl-x-map (kbd "C-h") help-map)
  347. (define-key help-map "a" 'apropos)
  348. ;; disable annoying keys
  349. (global-set-key [prior] 'ignore)
  350. (global-set-key (kbd "<next>") 'ignore)
  351. (global-set-key [menu] 'ignore)
  352. (global-set-key [down-mouse-1] 'ignore)
  353. (global-set-key [down-mouse-2] 'ignore)
  354. (global-set-key [down-mouse-3] 'ignore)
  355. (global-set-key [mouse-1] 'ignore)
  356. (global-set-key [mouse-2] 'ignore)
  357. (global-set-key [mouse-3] 'ignore)
  358. (global-set-key (kbd "<eisu-toggle>") 'ignore)
  359. (global-set-key (kbd "C-<eisu-toggle>") 'ignore)
  360. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  361. ;; editting
  362. (defun my-copy-whole-line ()
  363. "Copy whole line."
  364. (interactive)
  365. (kill-new (concat (buffer-substring (point-at-bol)
  366. (point-at-eol))
  367. "\n")))
  368. (setq require-final-newline t)
  369. (setq kill-whole-line t)
  370. (setq scroll-conservatively 35
  371. scroll-margin 2
  372. scroll-step 0)
  373. (setq-default major-mode 'text-mode)
  374. (setq next-line-add-newlines nil)
  375. (setq kill-read-only-ok t)
  376. (setq truncate-partial-width-windows nil) ; when splitted horizontally
  377. ;; (setq-default line-spacing 0.2)
  378. (setq-default indicate-empty-lines t) ; when using x indicate empty line
  379. (setq-default tab-width 4)
  380. (setq-default indent-tabs-mode nil)
  381. (setq-default indent-line-function nil)
  382. ;; (pc-selection-mode 1) ; make some already defined keybind back to default
  383. (delete-selection-mode 1)
  384. (cua-mode 0)
  385. (setq line-move-visual nil)
  386. ;; key bindings
  387. ;; moving around
  388. ;; (global-set-key (kbd "M-j") 'next-line)
  389. ;; (global-set-key (kbd "M-k") 'previous-line)
  390. ;; (global-set-key (kbd "M-h") 'backward-char)
  391. ;; (global-set-key (kbd "M-l") 'forward-char)
  392. ;;(keyboard-translate ?\M-j ?\C-j)
  393. ;; (global-set-key (kbd "M-p") 'backward-paragraph)
  394. (define-key esc-map "p" 'backward-paragraph)
  395. ;; (global-set-key (kbd "M-n") 'forward-paragraph)
  396. (define-key esc-map "n" 'forward-paragraph)
  397. (global-set-key (kbd "C-<up>") 'scroll-down-line)
  398. (global-set-key (kbd "C-<down>") 'scroll-up-line)
  399. (global-set-key (kbd "C-<left>") 'scroll-down)
  400. (global-set-key (kbd "C-<right>") 'scroll-up)
  401. (global-set-key (kbd "<select>") 'ignore) ; 'previous-line-mark)
  402. (define-key ctl-x-map (kbd "ESC x") 'execute-extended-command)
  403. (define-key ctl-x-map (kbd "ESC :") 'eval-expression)
  404. ;; C-h and DEL
  405. (global-set-key (kbd "C-h") (kbd "DEL"))
  406. (global-set-key (kbd "C-m") 'reindent-then-newline-and-indent)
  407. (global-set-key (kbd "C-o") (kbd "C-e C-m"))
  408. (define-key esc-map "k" 'my-copy-whole-line)
  409. ;; (global-set-key "\C-z" 'undo) ; undo is M-u
  410. (define-key esc-map "u" 'undo)
  411. (define-key esc-map "i" (kbd "ESC TAB"))
  412. ;; (global-set-key (kbd "C-r") 'query-replace-regexp)
  413. (global-set-key (kbd "C-s") 'isearch-forward-regexp)
  414. (global-set-key (kbd "C-r") 'isearch-backward-regexp)
  415. (define-key my-prefix-map (kbd "C-o") 'occur)
  416. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  417. ;; title and mode-line
  418. (when (safe-require-or-eval 'terminal-title)
  419. ;; if TERM is not screen use default value
  420. (if (getenv "TMUX")
  421. ;; if use tmux locally just basename of current dir
  422. (set-variable 'terminal-title-format
  423. '((file-name-nondirectory (directory-file-name
  424. default-directory))))
  425. (if (and (let ((tty-type (frame-parameter nil
  426. 'tty-type)))
  427. (and tty-type
  428. (equal (car (split-string tty-type
  429. "-"))
  430. "screen")))
  431. (not (getenv "SSH_CONNECTION")))
  432. (set-variable 'terminal-title-format
  433. '((file-name-nondirectory (directory-file-name
  434. default-directory))))
  435. ;; seems that TMUX is used locally and ssh to remote host
  436. (set-variable 'terminal-title-format
  437. `("em:"
  438. ,user-login-name
  439. "@"
  440. ,(car (split-string system-name
  441. "\\."))
  442. ":"
  443. default-directory))
  444. )
  445. )
  446. (terminal-title-mode))
  447. (setq eol-mnemonic-dos "\\r\\n")
  448. (setq eol-mnemonic-mac "\\r")
  449. (setq eol-mnemonic-unix "\\n")
  450. (which-function-mode 0)
  451. (line-number-mode 0)
  452. (column-number-mode 0)
  453. (size-indication-mode 0)
  454. (setq mode-line-position
  455. '(:eval (format "L%%l/%d,C%%c"
  456. (count-lines (point-max)
  457. (point-min)))))
  458. (when (safe-require-or-eval 'git-ps1-mode)
  459. (git-ps1-mode))
  460. ;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title
  461. ;; display date
  462. (when (safe-require-or-eval 'time)
  463. (setq display-time-interval 29)
  464. (setq display-time-day-and-date t)
  465. (setq display-time-format "%a, %d %b %Y %T")
  466. (if window-system
  467. (display-time-mode 0)
  468. (display-time-mode 1))
  469. (when display-time-mode
  470. (display-time-update)))
  471. ;; ;; current directory
  472. ;; (let ((ls (member 'mode-line-buffer-identification
  473. ;; mode-line-format)))
  474. ;; (setcdr ls
  475. ;; (cons '(:eval (concat " ("
  476. ;; (abbreviate-file-name default-directory)
  477. ;; ")"))
  478. ;; (cdr ls))))
  479. ;; ;; display last modified time
  480. ;; (let ((ls (member 'mode-line-buffer-identification
  481. ;; mode-line-format)))
  482. ;; (setcdr ls
  483. ;; (cons '(:eval (concat " "
  484. ;; my-buffer-file-last-modified-time))
  485. ;; (cdr ls))))
  486. (defun buffer-list-not-start-with-space ()
  487. "Return a list of buffers that not start with whitespaces."
  488. (let ((bl (buffer-list))
  489. b nbl)
  490. (while bl
  491. (setq b (pop bl))
  492. (unless (string-equal " "
  493. (substring (buffer-name b)
  494. 0
  495. 1))
  496. (add-to-list 'nbl b)))
  497. nbl))
  498. ;; http://www.masteringemacs.org/articles/2012/09/10/hiding-replacing-modeline-strings/
  499. ;; (add-to-list 'minor-mode-alist
  500. ;; '(global-whitespace-mode ""))
  501. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  502. ;; minibuffer
  503. (setq insert-default-directory t)
  504. (setq completion-ignore-case t
  505. read-file-name-completion-ignore-case t
  506. read-buffer-completion-ignore-case t)
  507. (setq resize-mini-windows t)
  508. (temp-buffer-resize-mode 1)
  509. (savehist-mode 1)
  510. (fset 'yes-or-no-p 'y-or-n-p)
  511. ;; complete symbol when `eval'
  512. (define-key read-expression-map (kbd "TAB") 'completion-at-point)
  513. (define-key minibuffer-local-map (kbd "C-u")
  514. (lambda () (interactive) (delete-region (point-at-bol) (point))))
  515. ;; I dont know these bindings are good
  516. (define-key minibuffer-local-map (kbd "C-p") (kbd "ESC p"))
  517. (define-key minibuffer-local-map (kbd "C-n") (kbd "ESC n"))
  518. (when (safe-require-or-eval 'minibuffer-line)
  519. (set-face-underline 'minibuffer-line nil)
  520. (set-variable 'minibuffer-line-format
  521. `(,(concat user-login-name
  522. "@"
  523. (car (split-string system-name
  524. "\\."))
  525. ":")
  526. (:eval (abbreviate-file-name default-directory))
  527. " "
  528. (:eval (and (fboundp 'git-ps1-mode-get-current)
  529. (git-ps1-mode-get-current "[GIT:%s]")))))
  530. (minibuffer-line-mode 1)
  531. )
  532. (when (safe-require-or-eval 'prompt-text)
  533. (set-variable 'prompt-text-format
  534. `(,(concat "["
  535. user-login-name
  536. "@"
  537. (car (split-string system-name
  538. "\\."))
  539. "][")
  540. (:eval (abbreviate-file-name default-directory))
  541. "]"
  542. (:eval (and (fboundp 'git-ps1-mode-get-current)
  543. (git-ps1-mode-get-current "[GIT:%s]")))
  544. "\n"))
  545. (prompt-text-mode 1))
  546. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  547. ;; letters, font-lock mode and fonts
  548. ;; (set-face-background 'vertical-border (face-foreground 'mode-line))
  549. ;; (set-window-margins (selected-window) 1 1)
  550. (and (or (eq system-type 'Darwin)
  551. (eq system-type 'darwin))
  552. (fboundp 'mac-set-input-method-parameter)
  553. (mac-set-input-method-parameter 'japanese 'cursor-color "red")
  554. (mac-set-input-method-parameter 'roman 'cursor-color "black"))
  555. (when (and (boundp 'input-method-activate-hook) ; i dont know this is correct
  556. (boundp 'input-method-inactivate-hook))
  557. (add-hook 'input-method-activate-hook
  558. (lambda () (set-cursor-color "red")))
  559. (add-hook 'input-method-inactivate-hook
  560. (lambda () (set-cursor-color "black"))))
  561. (when (safe-require-or-eval 'paren)
  562. (show-paren-mode 1)
  563. (setq show-paren-delay 0.5
  564. show-paren-style 'parenthesis) ; mixed is hard to read
  565. ;; (set-face-background 'show-paren-match
  566. ;; "black")
  567. ;; ;; (face-foreground 'default))
  568. ;; (set-face-foreground 'show-paren-match
  569. ;; "white")
  570. ;; (set-face-inverse-video-p 'show-paren-match
  571. ;; t)
  572. )
  573. (transient-mark-mode 1)
  574. (global-font-lock-mode 1)
  575. (setq font-lock-global-modes
  576. '(not
  577. help-mode
  578. eshell-mode
  579. ;;term-mode
  580. Man-mode))
  581. ;; (standard-display-ascii ?\n "$\n")
  582. ;; (defvar my-eol-face
  583. ;; '(("\n" . (0 font-lock-comment-face t nil)))
  584. ;; )
  585. ;; (defvar my-tab-face
  586. ;; '(("\t" . '(0 highlight t nil))))
  587. (defvar my-jspace-face
  588. '(("\u3000" . '(0 highlight t nil))))
  589. (add-hook 'font-lock-mode-hook
  590. (lambda ()
  591. ;; (font-lock-add-keywords nil my-eol-face)
  592. (font-lock-add-keywords nil my-jspace-face)
  593. ))
  594. (when (safe-require-or-eval 'whitespace)
  595. (add-to-list 'whitespace-display-mappings ; not work
  596. `(tab-mark ?\t ,(vconcat "^I\t")))
  597. (add-to-list 'whitespace-display-mappings
  598. `(newline-mark ?\n ,(vconcat "$\n")))
  599. (setq whitespace-style '(face
  600. trailing ; trailing blanks
  601. newline ; newlines
  602. newline-mark ; use display table for newline
  603. ;; tab-mark
  604. empty ; empty lines at beg or end of buffer
  605. lines-tail ; lines over 80
  606. ))
  607. ;; (setq whitespace-newline 'font-lock-comment-face)
  608. (global-whitespace-mode t)
  609. (if (eq (display-color-cells)
  610. 256)
  611. (set-face-foreground 'whitespace-newline "brightblack")
  612. ;; (progn
  613. ;; (set-face-bold-p 'whitespace-newline
  614. ;; t))
  615. ))
  616. (and nil
  617. (safe-require-or-eval 'fill-column-indicator)
  618. (setq fill-column-indicator))
  619. ;; highlight current line
  620. ;; http://wiki.riywo.com/index.php?Meadow
  621. (defface 10sr-hl-line
  622. '((((min-colors 256)
  623. (background dark))
  624. (:background "color-234"))
  625. (((min-colors 256)
  626. (background light))
  627. (:background "color-234"))
  628. (t
  629. (:underline "black")))
  630. "*Face used by hl-line."
  631. :group '10sr)
  632. (global-hl-line-mode 1) ;; (hl-line-mode 1)
  633. (set-variable 'hl-line-face '10sr-hl-line) ;; (setq hl-line-face nil)
  634. (set-variable 'hl-line-global-modes
  635. '(not
  636. term-mode))
  637. (set-face-foreground 'font-lock-regexp-grouping-backslash "#666")
  638. (set-face-foreground 'font-lock-regexp-grouping-construct "#f60")
  639. (safe-require-or-eval 'set-modeline-color)
  640. (let ((fg (face-foreground 'default))
  641. (bg (face-background 'default)))
  642. (set-face-background 'mode-line-inactive
  643. (if (face-inverse-video-p 'mode-line) fg bg))
  644. (set-face-foreground 'mode-line-inactive
  645. (if (face-inverse-video-p 'mode-line) bg fg)))
  646. (set-face-underline 'mode-line-inactive
  647. t)
  648. (set-face-underline 'vertical-border
  649. nil)
  650. ;; Not found in MELPA nor any other package repositories
  651. (and (fetch-library
  652. "https://raw.github.com/tarao/elisp/master/end-mark.el"
  653. t)
  654. (safe-require-or-eval 'end-mark)
  655. (global-end-mark-mode))
  656. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  657. ;; file handling
  658. (when (safe-require-or-eval 'editorconfig)
  659. (editorconfig-mode 1))
  660. (setq revert-without-query '(".+"))
  661. ;; save cursor position
  662. (when (safe-require-or-eval 'saveplace)
  663. (setq-default save-place t)
  664. (setq save-place-file (concat user-emacs-directory
  665. "places")))
  666. ;; http://www.bookshelf.jp/soft/meadow_24.html#SEC260
  667. (setq make-backup-files t)
  668. ;; (make-directory (expand-file-name "~/.emacsbackup"))
  669. (setq backup-directory-alist
  670. (cons (cons "\\.*$" (expand-file-name (concat user-emacs-directory
  671. "backup")))
  672. backup-directory-alist))
  673. (setq version-control 'never)
  674. (setq delete-old-versions t)
  675. (setq auto-save-list-file-prefix (expand-file-name (concat user-emacs-directory
  676. "auto-save/")))
  677. (setq delete-auto-save-files t)
  678. (add-to-list 'completion-ignored-extensions ".bak")
  679. ;; (setq delete-by-moving-to-trash t
  680. ;; trash-directory "~/.emacs.d/trash")
  681. (add-hook 'after-save-hook
  682. 'executable-make-buffer-file-executable-if-script-p)
  683. (set (defvar bookmark-default-file)
  684. (expand-file-name (concat user-emacs-directory
  685. "bmk")))
  686. (with-eval-after-load 'recentf
  687. (defvar recentf-exclude nil)
  688. (add-to-list 'recentf-exclude
  689. (regexp-quote bookmark-default-file)))
  690. (when (safe-require-or-eval 'smart-revert)
  691. (smart-revert-on))
  692. ;; autosave
  693. (when (safe-require-or-eval 'autosave)
  694. (autosave-set 2))
  695. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  696. ;; buffer killing
  697. ;; (defun my-delete-window-killing-buffer () nil)
  698. (defun my-query-kill-current-buffer ()
  699. "Interactively kill current buffer."
  700. (interactive)
  701. (if (y-or-n-p (concat "kill current buffer? :"))
  702. (kill-buffer (current-buffer))))
  703. ;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
  704. (substitute-key-definition 'kill-buffer
  705. 'my-query-kill-current-buffer
  706. global-map)
  707. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  708. ;; share clipboard with x
  709. ;; this page describes this in details, but only these sexps seem to be needed
  710. ;; http://garin.jp/doc/Linux/xwindow_clipboard
  711. (and (not window-system)
  712. (not (eq window-system 'mac))
  713. (getenv "DISPLAY")
  714. (not (equal (getenv "DISPLAY") ""))
  715. (executable-find "xclip")
  716. ;; (< emacs-major-version 24)
  717. (safe-require-or-eval 'xclip)
  718. nil
  719. (turn-on-xclip))
  720. (and (eq system-type 'darwin)
  721. (safe-require-or-eval 'pasteboard)
  722. (turn-on-pasteboard)
  723. (getenv "TMUX")
  724. (pasteboard-enable-rtun))
  725. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  726. ;; https://github.com/lunaryorn/flycheck
  727. (when (safe-require-or-eval 'flycheck)
  728. (call-after-init 'global-flycheck-mode))
  729. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  730. ;; some modes and hooks
  731. (set-variable 'ac-ignore-case nil)
  732. (when (autoload-eval-lazily 'term-run '(term-run-shell-command term-run))
  733. (define-key ctl-x-map "t" 'term-run-shell-command))
  734. (add-to-list 'safe-local-variable-values
  735. '(encoding utf-8))
  736. (setq enable-local-variables :safe)
  737. (when (safe-require-or-eval 'remember-major-modes-mode)
  738. (remember-major-modes-mode 1))
  739. ;; Detect file type from shebang and set major-mode.
  740. (add-to-list 'interpreter-mode-alist
  741. '("python3" . python-mode))
  742. (add-to-list 'interpreter-mode-alist
  743. '("python2" . python-mode))
  744. ;; http://fukuyama.co/foreign-regexp
  745. '(and (safe-require-or-eval 'foreign-regexp)
  746. (progn
  747. (setq foreign-regexp/regexp-type 'perl)
  748. '(setq reb-re-syntax 'foreign-regexp)
  749. ))
  750. (autoload-eval-lazily 'sql '(sql-mode)
  751. (safe-require-or-eval 'sql-indent))
  752. (when (autoload-eval-lazily 'git-command)
  753. (define-key ctl-x-map "g" 'git-command))
  754. (when (fetch-library
  755. "http://www.emacswiki.org/emacs/download/sl.el"
  756. t)
  757. (autoload-eval-lazily 'sl))
  758. (with-eval-after-load 'make-mode
  759. (defvar makefile-mode-map (make-sparse-keymap))
  760. (define-key makefile-mode-map (kbd "C-m") 'newline-and-indent)
  761. ;; this functions is set in write-file-functions, i cannot find any
  762. ;; good way to remove this.
  763. (fset 'makefile-warn-suspicious-lines 'ignore))
  764. (with-eval-after-load 'verilog-mode
  765. (defvar verilog-mode-map (make-sparse-keymap))
  766. (define-key verilog-mode-map ";" 'self-insert-command))
  767. (setq diff-switches "-u")
  768. (with-eval-after-load 'diff-mode
  769. ;; (when (and (eq major-mode
  770. ;; 'diff-mode)
  771. ;; (not buffer-file-name))
  772. ;; ;; do not pass when major-mode is derived mode of diff-mode
  773. ;; (view-mode 1))
  774. (set-face-attribute 'diff-header nil
  775. :foreground nil
  776. :background nil
  777. :weight 'bold)
  778. (set-face-attribute 'diff-file-header nil
  779. :foreground nil
  780. :background nil
  781. :weight 'bold)
  782. (set-face-foreground 'diff-index-face "blue")
  783. (set-face-attribute 'diff-hunk-header nil
  784. :foreground "cyan"
  785. :weight 'normal)
  786. (set-face-attribute 'diff-context nil
  787. ;; :foreground "white"
  788. :foreground nil
  789. :weight 'normal)
  790. (set-face-foreground 'diff-removed-face "red")
  791. (set-face-foreground 'diff-added-face "green")
  792. (set-face-background 'diff-removed-face nil)
  793. (set-face-background 'diff-added-face nil)
  794. (set-face-attribute 'diff-changed nil
  795. :foreground "magenta"
  796. :weight 'normal)
  797. (set-face-attribute 'diff-refine-change nil
  798. :foreground nil
  799. :background nil
  800. :weight 'bold
  801. :inverse-video t)
  802. ;; Annoying !
  803. ;;(diff-auto-refine-mode)
  804. )
  805. ;; (ffap-bindings)
  806. (set-variable 'sh-here-document-word "__EOC__")
  807. (setq auto-mode-alist
  808. `(("autostart\\'" . sh-mode)
  809. ("xinitrc\\'" . sh-mode)
  810. ("xprograms\\'" . sh-mode)
  811. ("PKGBUILD\\'" . sh-mode)
  812. ,@auto-mode-alist))
  813. ;; TODO: check if this is required
  814. (and (autoload-eval-lazily 'groovy-mode)
  815. (add-to-list 'auto-mode-alist
  816. '("build.gradle\\'" . groovy-mode)))
  817. (with-eval-after-load 'yaml-mode
  818. (defvar yaml-mode-map (make-sparse-keymap))
  819. (define-key yaml-mode-map (kbd "C-m") 'newline))
  820. (with-eval-after-load 'html-mode
  821. (defvar html-mode-map (make-sparse-keymap))
  822. (define-key html-mode-map (kbd "C-m") 'reindent-then-newline-and-indent))
  823. (with-eval-after-load 'text-mode
  824. (define-key text-mode-map (kbd "C-m") 'newline))
  825. (add-to-list 'Info-default-directory-list
  826. (expand-file-name "~/.info/emacs-ja"))
  827. (with-eval-after-load 'apropos
  828. (defvar apropos-mode-map (make-sparse-keymap))
  829. (define-key apropos-mode-map "n" 'next-line)
  830. (define-key apropos-mode-map "p" 'previous-line))
  831. (with-eval-after-load 'isearch
  832. ;; (define-key isearch-mode-map
  833. ;; (kbd "C-j") 'isearch-other-control-char)
  834. ;; (define-key isearch-mode-map
  835. ;; (kbd "C-k") 'isearch-other-control-char)
  836. ;; (define-key isearch-mode-map
  837. ;; (kbd "C-h") 'isearch-other-control-char)
  838. (define-key isearch-mode-map (kbd "C-h") 'isearch-delete-char)
  839. (define-key isearch-mode-map (kbd "M-r")
  840. 'isearch-query-replace-regexp))
  841. ;; do not cleanup isearch highlight: use `lazy-highlight-cleanup' to remove
  842. (setq lazy-highlight-cleanup nil)
  843. ;; face for isearch highlighing
  844. (set-face-attribute 'lazy-highlight
  845. nil
  846. :foreground `unspecified
  847. :background `unspecified
  848. :underline t
  849. ;; :weight `bold
  850. )
  851. (add-hook 'outline-mode-hook
  852. (lambda ()
  853. (when (string-match "\\.md\\'" buffer-file-name)
  854. (set (make-local-variable 'outline-regexp) "#+ "))))
  855. (add-to-list 'auto-mode-alist (cons "\\.ol\\'" 'outline-mode))
  856. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'outline-mode))
  857. (when (autoload-eval-lazily 'markdown-mode
  858. '(markdown-mode gfm-mode)
  859. (defvar gfm-mode-map (make-sparse-keymap))
  860. (define-key gfm-mode-map (kbd "C-m") 'electric-indent-just-newline))
  861. (add-to-list 'auto-mode-alist (cons "\\.md\\'" 'gfm-mode))
  862. (set-variable 'markdown-command (or (executable-find "markdown")
  863. (executable-find "markdown.pl")
  864. ""))
  865. (add-hook 'markdown-mode-hook
  866. (lambda ()
  867. (outline-minor-mode 1)
  868. (flyspell-mode)
  869. (set (make-local-variable 'comment-start) ";")))
  870. )
  871. ;; c-mode
  872. ;; http://www.emacswiki.org/emacs/IndentingC
  873. ;; http://en.wikipedia.org/wiki/Indent_style
  874. ;; http://d.hatena.ne.jp/emergent/20070203/1170512717
  875. ;; http://seesaawiki.jp/whiteflare503/d/Emacs%20%a5%a4%a5%f3%a5%c7%a5%f3%a5%c8
  876. (with-eval-after-load 'cc-vars
  877. (defvar c-default-style nil)
  878. (add-to-list 'c-default-style
  879. '(c-mode . "k&r"))
  880. (add-to-list 'c-default-style
  881. '(c++-mode . "k&r"))
  882. (add-hook 'c-mode-common-hook
  883. (lambda ()
  884. ;; why c-basic-offset in k&r style defaults to 5 ???
  885. (set-variable 'c-basic-offset 4)
  886. (set-variable 'indent-tabs-mode nil)
  887. ;; (set-face-foreground 'font-lock-keyword-face "blue")
  888. (c-toggle-hungry-state -1)
  889. ;; (and (require 'gtags nil t)
  890. ;; (gtags-mode 1))
  891. )))
  892. (when (autoload-eval-lazily 'php-mode)
  893. (add-hook 'php-mode-hook
  894. (lambda ()
  895. (set-variable 'c-basic-offset 2))))
  896. (autoload-eval-lazily 'js2-mode nil
  897. ;; currently do not use js2-mode
  898. ;; (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
  899. ;; (add-to-list 'auto-mode-alist '("\\.jsm\\'" . js2-mode))
  900. (defvar js2-mode-map (make-sparse-keymap))
  901. (define-key js2-mode-map (kbd "C-m") (lambda ()
  902. (interactive)
  903. (js2-enter-key)
  904. (indent-for-tab-command)))
  905. ;; (add-hook (kill-local-variable 'before-save-hook)
  906. ;; 'js2-before-save)
  907. ;; (add-hook 'before-save-hook
  908. ;; 'my-indent-buffer
  909. ;; nil
  910. ;; t)
  911. )
  912. (with-eval-after-load 'js
  913. (set-variable 'js-indent-level 2))
  914. (add-to-list 'interpreter-mode-alist
  915. '("node" . js-mode))
  916. (when (autoload-eval-lazily 'flymake-jslint
  917. '(flymake-jslint-load))
  918. (autoload-eval-lazily 'js nil
  919. (add-hook 'js-mode-hook
  920. 'flymake-jslint-load)))
  921. (safe-require-or-eval 'js-doc)
  922. (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
  923. (when (safe-require-or-eval 'uniquify)
  924. (setq uniquify-buffer-name-style 'post-forward-angle-brackets)
  925. (setq uniquify-ignore-buffers-re "*[^*]+*")
  926. (setq uniquify-min-dir-content 1))
  927. (with-eval-after-load 'view
  928. (defvar view-mode-map (make-sparse-keymap))
  929. (define-key view-mode-map "j" 'scroll-up-line)
  930. (define-key view-mode-map "k" 'scroll-down-line)
  931. (define-key view-mode-map "v" 'toggle-read-only)
  932. (define-key view-mode-map "q" 'bury-buffer)
  933. ;; (define-key view-mode-map "/" 'nonincremental-re-search-forward)
  934. ;; (define-key view-mode-map "?" 'nonincremental-re-search-backward)
  935. ;; (define-key view-mode-map
  936. ;; "n" 'nonincremental-repeat-search-forward)
  937. ;; (define-key view-mode-map
  938. ;; "N" 'nonincremental-repeat-search-backward)
  939. (define-key view-mode-map "/" 'isearch-forward-regexp)
  940. (define-key view-mode-map "?" 'isearch-backward-regexp)
  941. (define-key view-mode-map "n" 'isearch-repeat-forward)
  942. (define-key view-mode-map "N" 'isearch-repeat-backward)
  943. (define-key view-mode-map (kbd "C-m") 'my-rgrep-symbol-at-point))
  944. (global-set-key "\M-r" 'view-mode)
  945. ;; (setq view-read-only t)
  946. (add-hook 'Man-mode-hook
  947. (lambda ()
  948. (view-mode 1)
  949. (setq truncate-lines nil)))
  950. (set-variable 'Man-notify-method (if window-system
  951. 'newframe
  952. 'aggressive))
  953. (set-variable 'woman-cache-filename (expand-file-name (concat user-emacs-directory
  954. "woman_cache.el")))
  955. (defalias 'man 'woman)
  956. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  957. ;; python
  958. (when (autoload-eval-lazily 'python '(python-mode)
  959. (defvar python-mode-map (make-sparse-keymap))
  960. (define-key python-mode-map (kbd "C-c C-e") 'my-python-run-as-command)
  961. (define-key python-mode-map (kbd "C-c C-b") 'my-python-display-python-buffer)
  962. (define-key python-mode-map (kbd "C-m") 'newline-and-indent)
  963. (defvar inferior-python-mode-map (make-sparse-keymap))
  964. (define-key inferior-python-mode-map (kbd "<up>") 'comint-previous-input)
  965. (define-key inferior-python-mode-map (kbd "<down>") 'comint-next-input)
  966. )
  967. (set-variable 'python-python-command (or (executable-find "python3")
  968. (executable-find "python")))
  969. ;; (defun my-python-run-as-command ()
  970. ;; ""
  971. ;; (interactive)
  972. ;; (shell-command (concat python-python-command " " buffer-file-name)))
  973. (defun my-python-display-python-buffer ()
  974. ""
  975. (interactive)
  976. (defvar python-buffer nil)
  977. (set-window-text-height (display-buffer python-buffer
  978. t)
  979. 7))
  980. (add-hook 'inferior-python-mode-hook
  981. (lambda ()
  982. (my-python-display-python-buffer))))
  983. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  984. ;; gauche-mode
  985. ;; http://d.hatena.ne.jp/kobapan/20090305/1236261804
  986. ;; http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el
  987. (when (and (fetch-library
  988. "http://www.katch.ne.jp/~leque/software/repos/gauche-mode/gauche-mode.el"
  989. t)
  990. (autoload-eval-lazily 'gauche-mode '(gauche-mode run-scheme)
  991. (defvar gauche-mode-map (make-sparse-keymap))
  992. (defvar scheme-mode-map (make-sparse-keymap))
  993. (define-key gauche-mode-map
  994. (kbd "C-c C-z") 'run-gauche-other-window)
  995. (define-key scheme-mode-map
  996. (kbd "C-c C-c") 'scheme-send-buffer)
  997. (define-key scheme-mode-map
  998. (kbd "C-c C-b") 'my-scheme-display-scheme-buffer)))
  999. (let ((s (executable-find "gosh")))
  1000. (set-variable 'scheme-program-name s)
  1001. (set-variable 'gauche-program-name s))
  1002. (defvar gauche-program-name nil)
  1003. (defvar scheme-buffer nil)
  1004. (defun run-gauche-other-window ()
  1005. "Run gauche on other window"
  1006. (interactive)
  1007. (switch-to-buffer-other-window
  1008. (get-buffer-create "*scheme*"))
  1009. (run-gauche))
  1010. (defun run-gauche ()
  1011. "run gauche"
  1012. (interactive)
  1013. (run-scheme gauche-program-name)
  1014. )
  1015. (defun scheme-send-buffer ()
  1016. ""
  1017. (interactive)
  1018. (scheme-send-region (point-min) (point-max))
  1019. (my-scheme-display-scheme-buffer)
  1020. )
  1021. (defun my-scheme-display-scheme-buffer ()
  1022. ""
  1023. (interactive)
  1024. (set-window-text-height (display-buffer scheme-buffer
  1025. t)
  1026. 7))
  1027. (add-hook 'scheme-mode-hook
  1028. (lambda ()
  1029. nil))
  1030. (add-hook 'inferior-scheme-mode-hook
  1031. (lambda ()
  1032. ;; (my-scheme-display-scheme-buffer)
  1033. ))
  1034. (setq auto-mode-alist
  1035. (cons '("\.gosh\\'" . gauche-mode) auto-mode-alist))
  1036. (setq auto-mode-alist
  1037. (cons '("\.gaucherc\\'" . gauche-mode) auto-mode-alist))
  1038. )
  1039. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1040. ;; term mode
  1041. ;; (setq multi-term-program shell-file-name)
  1042. (when (autoload-eval-lazily 'multi-term)
  1043. (set-variable 'multi-term-switch-after-close nil)
  1044. (set-variable 'multi-term-dedicated-select-after-open-p t)
  1045. (set-variable 'multi-term-dedicated-window-height 20))
  1046. (when (autoload-eval-lazily 'term '(term ansi-term)
  1047. (defvar term-raw-map (make-sparse-keymap))
  1048. ;; (define-key term-raw-map "\C-xl" 'term-line-mode)
  1049. ;; (define-key term-mode-map "\C-xc" 'term-char-mode)
  1050. (define-key term-raw-map (kbd "<up>") 'scroll-down-line)
  1051. (define-key term-raw-map (kbd "<down>") 'scroll-up-line)
  1052. (define-key term-raw-map (kbd "<right>") 'scroll-up)
  1053. (define-key term-raw-map (kbd "<left>") 'scroll-down)
  1054. (define-key term-raw-map (kbd "C-p") 'term-send-raw)
  1055. (define-key term-raw-map (kbd "C-n") 'term-send-raw)
  1056. (define-key term-raw-map "q" 'my-term-quit-or-send-raw)
  1057. ;; (define-key term-raw-map (kbd "ESC") 'term-send-raw)
  1058. (define-key term-raw-map [delete] 'term-send-raw)
  1059. (define-key term-raw-map (kbd "DEL") 'term-send-backspace)
  1060. (define-key term-raw-map "\C-y" 'term-paste)
  1061. (define-key term-raw-map
  1062. "\C-c" 'term-send-raw) ;; 'term-interrupt-subjob)
  1063. '(define-key term-mode-map (kbd "C-x C-q") 'term-pager-toggle)
  1064. ;; (dolist (key '("<up>" "<down>" "<right>" "<left>"))
  1065. ;; (define-key term-raw-map (read-kbd-macro key) 'term-send-raw))
  1066. ;; (define-key term-raw-map "\C-d" 'delete-char)
  1067. ;; (define-key term-raw-map "\C-q" 'move-beginning-of-line)
  1068. ;; (define-key term-raw-map "\C-r" 'term-send-raw)
  1069. ;; (define-key term-raw-map "\C-s" 'term-send-raw)
  1070. ;; (define-key term-raw-map "\C-f" 'forward-char)
  1071. ;; (define-key term-raw-map "\C-b" 'backward-char)
  1072. ;; (define-key term-raw-map "\C-t" 'set-mark-command)
  1073. )
  1074. (defun my-term-quit-or-send-raw ()
  1075. ""
  1076. (interactive)
  1077. (if (get-buffer-process (current-buffer))
  1078. (call-interactively 'term-send-raw)
  1079. (kill-buffer)))
  1080. ;; http://d.hatena.ne.jp/goinger/20100416/1271399150
  1081. ;; (setq term-ansi-default-program shell-file-name)
  1082. (add-hook 'term-setup-hook
  1083. (lambda ()
  1084. (set-variable 'term-display-table (make-display-table))))
  1085. (add-hook 'term-mode-hook
  1086. (lambda ()
  1087. (defvar term-raw-map (make-sparse-keymap))
  1088. ;; (unless (memq (current-buffer)
  1089. ;; (and (featurep 'multi-term)
  1090. ;; (defvar multi-term-buffer-list)
  1091. ;; ;; current buffer is not multi-term buffer
  1092. ;; multi-term-buffer-list))
  1093. ;; )
  1094. (set (make-local-variable 'scroll-margin) 0)
  1095. ;; (set (make-local-variable 'cua-enable-cua-keys) nil)
  1096. ;; (cua-mode 0)
  1097. ;; (and cua-mode
  1098. ;; (local-unset-key (kbd "C-c")))
  1099. ;; (define-key cua--prefix-override-keymap
  1100. ;;"\C-c" 'term-interrupt-subjob)
  1101. (set (make-local-variable (defvar hl-line-range-function))
  1102. (lambda ()
  1103. '(0 . 0)))
  1104. (define-key term-raw-map
  1105. "\C-x" (lookup-key (current-global-map) "\C-x"))
  1106. (define-key term-raw-map
  1107. "\C-z" (lookup-key (current-global-map) "\C-z"))
  1108. ))
  1109. ;; (add-hook 'term-exec-hook 'forward-char)
  1110. )
  1111. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1112. ;; buffer switching
  1113. (defvar bs-configurations)
  1114. (when (autoload-eval-lazily 'bs '(bs-show)
  1115. ;; (add-to-list 'bs-configurations
  1116. ;; '("processes" nil get-buffer-process ".*" nil nil))
  1117. (add-to-list 'bs-configurations
  1118. '("files-and-terminals" nil nil nil
  1119. (lambda (buf)
  1120. (and (bs-visits-non-file buf)
  1121. (save-excursion
  1122. (set-buffer buf)
  1123. (not (memq major-mode
  1124. '(term-mode
  1125. eshell-mode))))))))
  1126. ;; (setq bs-configurations (list
  1127. ;; '("processes" nil get-buffer-process ".*" nil nil)
  1128. ;; '("files-and-scratch" "^\\*scratch\\*$" nil nil
  1129. ;; bs-visits-non-file bs-sort-buffer-interns-are-last)))
  1130. )
  1131. ;; (global-set-key "\C-x\C-b" 'bs-show)
  1132. (defalias 'list-buffers 'bs-show)
  1133. (set-variable 'bs-default-configuration "files-and-terminals")
  1134. (set-variable 'bs-default-sort-name "by nothing")
  1135. (add-hook 'bs-mode-hook
  1136. (lambda ()
  1137. ;; (setq bs-default-configuration "files")
  1138. ;; (and bs--show-all
  1139. ;; (call-interactively 'bs-toggle-show-all))
  1140. (set (make-local-variable 'scroll-margin) 0))))
  1141. ;;(iswitchb-mode 1)
  1142. (icomplete-mode)
  1143. (defun iswitchb-buffer-display-other-window ()
  1144. "Do iswitchb in other window."
  1145. (interactive)
  1146. (let ((iswitchb-default-method 'display))
  1147. (call-interactively 'iswitchb-buffer)))
  1148. ;;;;;;;;;;;;;;;;;;;;;;;;
  1149. ;; ilookup
  1150. (with-eval-after-load 'ilookup
  1151. (set-variable 'ilookup-dict-alist
  1152. '(
  1153. ("sdcv" . (lambda (word)
  1154. (shell-command-to-string
  1155. (format "sdcv -n '%s'"
  1156. word))))
  1157. ("en" . (lambda (word)
  1158. (shell-command-to-string
  1159. (format "sdcv -n -u dictd_www.dict.org_gcide '%s'"
  1160. word))))
  1161. ("ja" . (lambda (word)
  1162. (shell-command-to-string
  1163. (format "sdcv -n -u EJ-GENE95 -u jmdict-en-ja '%s'"
  1164. word))))
  1165. ("jaj" . (lambda (word)
  1166. (shell-command-to-string
  1167. (format "sdcv -n -u jmdict-en-ja '%s'"
  1168. word))))
  1169. ("jag" .
  1170. (lambda (word)
  1171. (with-temp-buffer
  1172. (insert (shell-command-to-string
  1173. (format "sdcv -n -u 'Genius English-Japanese' '%s'"
  1174. word)))
  1175. (html2text)
  1176. (buffer-substring (point-min)
  1177. (point-max)))))
  1178. ("alc" . (lambda (word)
  1179. (shell-command-to-string
  1180. (format "alc '%s' | head -n 20"
  1181. word))))
  1182. ("app" . (lambda (word)
  1183. (shell-command-to-string
  1184. (format "dict_app '%s'"
  1185. word))))
  1186. ;; letters broken
  1187. ("ms" .
  1188. (lambda (word)
  1189. (let ((url (concat
  1190. "http://api.microsofttranslator.com/V2/Ajax.svc/"
  1191. "Translate?appId=%s&text=%s&to=%s"))
  1192. (apikey "3C9778666C5BA4B406FFCBEE64EF478963039C51")
  1193. (target "ja")
  1194. (eword (url-hexify-string word)))
  1195. (with-current-buffer (url-retrieve-synchronously
  1196. (format url
  1197. apikey
  1198. eword
  1199. target))
  1200. (message "")
  1201. (goto-char (point-min))
  1202. (search-forward-regexp "^$"
  1203. nil
  1204. t)
  1205. (url-unhex-string (buffer-substring-no-properties
  1206. (point)
  1207. (point-max)))))))
  1208. ))
  1209. ;; (funcall (cdr (assoc "ms"
  1210. ;; ilookup-alist))
  1211. ;; "dictionary")
  1212. ;; (switch-to-buffer (url-retrieve-synchronously "http://api.microsofttranslator.com/V2/Ajax.svc/Translate?appId=3C9778666C5BA4B406FFCBEE64EF478963039C51&text=dictionary&to=ja"))
  1213. ;; (switch-to-buffer (url-retrieve-synchronously "http://google.com"))
  1214. (set-variable 'ilookup-default "ja")
  1215. (when (locate-library "google-translate")
  1216. (defvar ilookup-dict-alist nil)
  1217. (add-to-list 'ilookup-dict-alist
  1218. '("gt" .
  1219. (lambda (word)
  1220. (save-excursion
  1221. (google-translate-translate "auto"
  1222. "ja"
  1223. word))
  1224. (with-current-buffer "*Google Translate*"
  1225. (buffer-substring-no-properties (point-min)
  1226. (point-max)))))))
  1227. )
  1228. (when (autoload-eval-lazily 'google-translate '(google-translate-translate
  1229. google-translate-at-point))
  1230. (set-variable 'google-translate-default-source-language "auto")
  1231. (set-variable 'google-translate-default-target-language "ja"))
  1232. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1233. ;; vc
  1234. (require 'vc)
  1235. (setq vc-handled-backends '())
  1236. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1237. ;; recentf-mode
  1238. (set-variable 'recentf-save-file (expand-file-name (concat user-emacs-directory
  1239. "recentf")))
  1240. (set-variable 'recentf-max-menu-items 20)
  1241. (set-variable 'recentf-max-saved-items 30)
  1242. (set-variable 'recentf-show-file-shortcuts-flag nil)
  1243. (when (safe-require-or-eval 'recentf)
  1244. (add-to-list 'recentf-exclude
  1245. (regexp-quote recentf-save-file))
  1246. (add-to-list 'recentf-exclude
  1247. (regexp-quote (expand-file-name user-emacs-directory)))
  1248. (define-key ctl-x-map (kbd "C-r") 'recentf-open-files)
  1249. (remove-hook 'find-file-hook
  1250. 'recentf-track-opened-file)
  1251. (defun my-recentf-load-track-save-list ()
  1252. "Load current recentf list from file, track current visiting file, then save
  1253. the list."
  1254. (recentf-load-list)
  1255. (recentf-track-opened-file)
  1256. (recentf-save-list))
  1257. (add-hook 'find-file-hook
  1258. 'my-recentf-load-track-save-list)
  1259. (add-hook 'kill-emacs-hook
  1260. 'recentf-load-list)
  1261. ;;(run-with-idle-timer 5 t 'recentf-save-list)
  1262. ;; (add-hook 'find-file-hook
  1263. ;; (lambda ()
  1264. ;; (recentf-add-file default-directory)))
  1265. (and (autoload-eval-lazily 'recentf-show)
  1266. (define-key ctl-x-map (kbd "C-r") 'recentf-show)
  1267. (add-hook 'recentf-show-before-listing-hook
  1268. 'recentf-load-list))
  1269. (recentf-mode 1)
  1270. (define-key recentf-dialog-mode-map (kbd "<up>") 'previous-line)
  1271. (define-key recentf-dialog-mode-map (kbd "<down>") 'next-line)
  1272. (define-key recentf-dialog-mode-map "p" 'previous-line)
  1273. (define-key recentf-dialog-mode-map "n" 'next-line)
  1274. (add-hook 'recentf-dialog-mode-hook
  1275. (lambda ()
  1276. ;; (recentf-save-list)
  1277. ;; (define-key recentf-dialog-mode-map (kbd "C-x C-f")
  1278. ;; 'my-recentf-cd-and-find-file)
  1279. (cd "~/"))))
  1280. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1281. ;; dired
  1282. (defun my-dired-echo-file-head (arg)
  1283. ""
  1284. (interactive "P")
  1285. (let ((f (dired-get-filename)))
  1286. (message "%s"
  1287. (with-temp-buffer
  1288. (insert-file-contents f)
  1289. (buffer-substring-no-properties
  1290. (point-min)
  1291. (progn (goto-char (point-min))
  1292. (forward-line (1- (if arg
  1293. (prefix-numeric-value arg)
  1294. 7)))
  1295. (point-at-eol)))))))
  1296. (defun my-dired-diff ()
  1297. ""
  1298. (interactive)
  1299. (let ((files (dired-get-marked-files nil nil nil t)))
  1300. (if (eq (car files)
  1301. t)
  1302. (diff (cadr files) (dired-get-filename))
  1303. (message "One file must be marked!"))))
  1304. (defun dired-get-file-info ()
  1305. "dired get file info"
  1306. (interactive)
  1307. (let ((f (shell-quote-argument (dired-get-filename t))))
  1308. (if (file-directory-p f)
  1309. (progn
  1310. (message "Calculating disk usage...")
  1311. (shell-command (concat "du -hsD "
  1312. f)))
  1313. (shell-command (concat "file "
  1314. f)))))
  1315. (defun my-dired-scroll-up ()
  1316. ""
  1317. (interactive)
  1318. (my-dired-previous-line (- (window-height) 1)))
  1319. (defun my-dired-scroll-down ()
  1320. ""
  1321. (interactive)
  1322. (my-dired-next-line (- (window-height) 1)))
  1323. ;; (defun my-dired-forward-line (arg)
  1324. ;; ""
  1325. ;; (interactive "p"))
  1326. (defun my-dired-previous-line (arg)
  1327. ""
  1328. (interactive "p")
  1329. (if (> arg 0)
  1330. (progn
  1331. (if (eq (line-number-at-pos)
  1332. 1)
  1333. (goto-char (point-max))
  1334. (forward-line -1))
  1335. (my-dired-previous-line (if (or (dired-get-filename nil t)
  1336. (dired-get-subdir))
  1337. (- arg 1)
  1338. arg)))
  1339. (dired-move-to-filename)))
  1340. (defun my-dired-next-line (arg)
  1341. ""
  1342. (interactive "p")
  1343. (if (> arg 0)
  1344. (progn
  1345. (if (eq (point)
  1346. (point-max))
  1347. (goto-char (point-min))
  1348. (forward-line 1))
  1349. (my-dired-next-line (if (or (dired-get-filename nil t)
  1350. (dired-get-subdir))
  1351. (- arg 1)
  1352. arg)))
  1353. (dired-move-to-filename)))
  1354. ;;http://bach.istc.kobe-u.ac.jp/lect/tamlab/ubuntu/emacs.html
  1355. (if (eq window-system 'mac)
  1356. (setq dired-listing-switches "-lhF")
  1357. (setq dired-listing-switches "-lhF --time-style=long-iso")
  1358. )
  1359. (setq dired-listing-switches "-lhF")
  1360. (put 'dired-find-alternate-file 'disabled nil)
  1361. ;; when using dired-find-alternate-file
  1362. ;; reuse current dired buffer for the file to open
  1363. (set-variable 'dired-ls-F-marks-symlinks t)
  1364. (when (safe-require-or-eval 'ls-lisp)
  1365. (setq ls-lisp-use-insert-directory-program nil) ; always use ls-lisp
  1366. (setq ls-lisp-dirs-first t)
  1367. (setq ls-lisp-use-localized-time-format t)
  1368. (setq ls-lisp-format-time-list
  1369. '("%Y-%m-%d %H:%M"
  1370. "%Y-%m-%d ")))
  1371. (set-variable 'dired-dwim-target t)
  1372. (set-variable 'dired-isearch-filenames t)
  1373. (set-variable 'dired-hide-details-hide-symlink-targets nil)
  1374. (set-variable 'dired-hide-details-hide-information-lines nil)
  1375. ;; (add-hook 'dired-after-readin-hook
  1376. ;; 'my-replace-nasi-none)
  1377. ;; (add-hook 'after-init-hook
  1378. ;; (lambda ()
  1379. ;; (dired ".")))
  1380. (with-eval-after-load 'dired
  1381. (defvar dired-mode-map (make-sparse-keymap))
  1382. (define-key dired-mode-map "o" 'my-dired-x-open)
  1383. (define-key dired-mode-map "i" 'dired-get-file-info)
  1384. (define-key dired-mode-map "f" 'find-file)
  1385. (define-key dired-mode-map "!" 'shell-command)
  1386. (define-key dired-mode-map "&" 'async-shell-command)
  1387. (define-key dired-mode-map "X" 'dired-do-async-shell-command)
  1388. (define-key dired-mode-map "=" 'my-dired-diff)
  1389. (define-key dired-mode-map "B" 'gtkbm-add-current-dir)
  1390. (define-key dired-mode-map "b" 'gtkbm)
  1391. (define-key dired-mode-map "h" 'my-dired-echo-file-head)
  1392. (define-key dired-mode-map "@" (lambda ()
  1393. (interactive) (my-x-open ".")))
  1394. (define-key dired-mode-map (kbd "TAB") 'other-window)
  1395. ;; (define-key dired-mode-map "P" 'my-dired-do-pack-or-unpack)
  1396. (define-key dired-mode-map "/" 'dired-isearch-filenames)
  1397. (define-key dired-mode-map (kbd "DEL") 'dired-up-directory)
  1398. (define-key dired-mode-map (kbd "C-h") 'dired-up-directory)
  1399. (substitute-key-definition 'dired-next-line
  1400. 'my-dired-next-line
  1401. dired-mode-map)
  1402. (substitute-key-definition 'dired-previous-line
  1403. 'my-dired-previous-line
  1404. dired-mode-map)
  1405. ;; (define-key dired-mode-map (kbd "C-p") 'my-dired-previous-line)
  1406. ;; (define-key dired-mode-map (kbd "p") 'my-dired-previous-line)
  1407. ;; (define-key dired-mode-map (kbd "C-n") 'my-dired-next-line)
  1408. ;; (define-key dired-mode-map (kbd "n") 'my-dired-next-line)
  1409. (define-key dired-mode-map (kbd "<left>") 'my-dired-scroll-up)
  1410. (define-key dired-mode-map (kbd "<right>") 'my-dired-scroll-down)
  1411. (define-key dired-mode-map (kbd "ESC p") 'my-dired-scroll-up)
  1412. (define-key dired-mode-map (kbd "ESC n") 'my-dired-scroll-down)
  1413. (add-hook 'dired-mode-hook
  1414. (lambda ()
  1415. (when (fboundp 'dired-hide-details-mode)
  1416. (dired-hide-details-mode t)
  1417. (local-set-key "l" 'dired-hide-details-mode))
  1418. (let ((file "._Icon\015"))
  1419. (when nil
  1420. '(file-readable-p file)
  1421. (delete-file file)))))
  1422. (when (autoload-eval-lazily 'pack '(dired-do-pack-or-unpack pack-pack))
  1423. (with-eval-after-load 'dired
  1424. (define-key dired-mode-map "P" 'dired-do-pack-or-unpack)))
  1425. (when (autoload-eval-lazily 'dired-list-all-mode)
  1426. (setq dired-listing-switches "-lhF")
  1427. (with-eval-after-load 'dired
  1428. (define-key dired-mode-map "a" 'dired-list-all-mode))))
  1429. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1430. ;; eshell
  1431. (set-variable 'eshell-banner-message (format "Welcome to the Emacs shell
  1432. %s
  1433. C-x t to toggling emacs-text-mode
  1434. "
  1435. (shell-command-to-string "uname -a")
  1436. ))
  1437. (defvar eshell-text-mode-map
  1438. (let ((map (make-sparse-keymap)))
  1439. (define-key map (kbd "C-x t") 'eshell-text-mode-toggle)
  1440. map))
  1441. (define-derived-mode eshell-text-mode text-mode
  1442. "Eshell-Text"
  1443. "Text-mode for Eshell."
  1444. nil)
  1445. (defun eshell-text-mode-toggle ()
  1446. "Toggle eshell-text-mode and eshell-mode."
  1447. (interactive)
  1448. (cond ((eq major-mode
  1449. 'eshell-text-mode)
  1450. (goto-char (point-max))
  1451. (message "Eshell text mode disabled")
  1452. (eshell-mode))
  1453. ((eq major-mode
  1454. 'eshell-mode)
  1455. (message "Eshell text mode enabled")
  1456. (eshell-write-history)
  1457. (eshell-text-mode))
  1458. (t
  1459. (message "Not in eshell buffer")
  1460. nil)))
  1461. (defun my-eshell-backward-delete-char ()
  1462. (interactive)
  1463. (when (< (save-excursion
  1464. (eshell-bol)
  1465. (point))
  1466. (point))
  1467. (backward-delete-char 1)))
  1468. (defun my-file-owner-p (file)
  1469. "t if FILE is owned by me."
  1470. (eq (user-uid) (nth 2 (file-attributes file))))
  1471. "http://www.bookshelf.jp/pukiwiki/pukiwiki.php\
  1472. ?Eshell%A4%F2%BB%C8%A4%A4%A4%B3%A4%CA%A4%B9"
  1473. ;; ;; written by Stefan Reichoer <reichoer@web.de>
  1474. ;; (defun eshell/less (&rest args)
  1475. ;; "Invoke `view-file' on the file.
  1476. ;; \"less +42 foo\" also goes to line 42 in the buffer."
  1477. ;; (if args
  1478. ;; (while args
  1479. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1480. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1481. ;; (file (pop args)))
  1482. ;; (view-file file)
  1483. ;; (goto-line line))
  1484. ;; (view-file (pop args))))))
  1485. (defun eshell/o (&optional file)
  1486. (my-x-open (or file ".")))
  1487. ;; (defun eshell/vi (&rest args)
  1488. ;; "Invoke `find-file' on the file.
  1489. ;; \"vi +42 foo\" also goes to line 42 in the buffer."
  1490. ;; (while args
  1491. ;; (if (string-match "\\`\\+\\([0-9]+\\)\\'" (car args))
  1492. ;; (let* ((line (string-to-number (match-string 1 (pop args))))
  1493. ;; (file (pop args)))
  1494. ;; (find-file file)
  1495. ;; (goto-line line))
  1496. ;; (find-file (pop args)))))
  1497. (defun eshell/clear ()
  1498. "Clear the current buffer, leaving one prompt at the top."
  1499. (interactive)
  1500. (let ((inhibit-read-only t))
  1501. (erase-buffer)))
  1502. (defvar eshell-prompt-function)
  1503. (defun eshell-clear ()
  1504. (interactive)
  1505. (let ((inhibit-read-only t))
  1506. (erase-buffer)
  1507. (insert (funcall eshell-prompt-function))))
  1508. (defun eshell/d (&optional dirname switches)
  1509. "if first arg is omitted open current directory."
  1510. (dired (or dirname ".") switches))
  1511. (defun eshell/v ()
  1512. (view-mode 1))
  1513. ;; (defun eshell/aaa (&rest args)
  1514. ;; (message "%S"
  1515. ;; args))
  1516. (defalias 'eshell/: 'ignore)
  1517. (defalias 'eshell/type 'eshell/which)
  1518. ;; (defalias 'eshell/vim 'eshell/vi)
  1519. (defalias 'eshell/ff 'find-file)
  1520. (defalias 'eshell/q 'eshell/exit)
  1521. (defun eshell-goto-prompt ()
  1522. ""
  1523. (interactive)
  1524. (goto-char (point-max)))
  1525. (defun eshell-delete-char-or-logout (n)
  1526. (interactive "p")
  1527. (if (equal (eshell-get-old-input)
  1528. "")
  1529. (progn
  1530. (insert "exit")
  1531. (eshell-send-input))
  1532. (delete-char n)))
  1533. (defun eshell-kill-input ()
  1534. (interactive)
  1535. (delete-region (point)
  1536. (progn (eshell-bol)
  1537. (point))))
  1538. (defalias 'eshell/logout 'eshell/exit)
  1539. (defun eshell-cd-default-directory (&optional eshell-buffer-or-name)
  1540. "open eshell and change wd
  1541. if arg given, use that eshell buffer, otherwise make new eshell buffer."
  1542. (interactive)
  1543. (let ((dir (expand-file-name default-directory)))
  1544. (switch-to-buffer (or eshell-buffer-or-name
  1545. (eshell t)))
  1546. (unless (equal dir (expand-file-name default-directory))
  1547. ;; (cd dir)
  1548. ;; (eshell-interactive-print (concat "cd " dir "\n"))
  1549. ;; (eshell-emit-prompt)
  1550. (goto-char (point-max))
  1551. (eshell-kill-input)
  1552. (insert "cd " dir)
  1553. (eshell-send-input))))
  1554. (defadvice eshell-next-matching-input-from-input
  1555. ;; do not cycle history
  1556. (around eshell-history-do-not-cycle activate)
  1557. (if (= 0
  1558. (or eshell-history-index
  1559. 0))
  1560. (progn
  1561. (delete-region eshell-last-output-end (point))
  1562. (insert-and-inherit eshell-matching-input-from-input-string)
  1563. (setq eshell-history-index nil))
  1564. ad-do-it))
  1565. (set-variable 'eshell-directory-name (concat user-emacs-directory
  1566. "eshell/"))
  1567. (set-variable 'eshell-term-name "eterm-color")
  1568. (set-variable 'eshell-scroll-to-bottom-on-input 'this)
  1569. (set-variable 'eshell-cmpl-ignore-case t)
  1570. (set-variable 'eshell-cmpl-cycle-completions nil)
  1571. (set-variable 'eshell-highlight-prompt nil)
  1572. (if (eq system-type 'darwin)
  1573. (set-variable 'eshell-ls-initial-args '("-hCFG")
  1574. (set-variable 'eshell-ls-initial-args '("-hCFG"
  1575. "--color=auto"
  1576. "--time-style=long-iso")) ; "-hF")
  1577. ))
  1578. (set (defvar eshell-prompt-function)
  1579. 'my-eshell-prompt-function)
  1580. (defvar eshell-last-command-status)
  1581. (defun my-eshell-prompt-function()
  1582. "Prompt function.
  1583. It looks like:
  1584. :: [10sr@darwin:~/][ESHELL]
  1585. :: $
  1586. "
  1587. (concat ":: ["
  1588. (let ((str (concat user-login-name
  1589. "@"
  1590. (car (split-string system-name
  1591. "\\."))
  1592. )))
  1593. (put-text-property 0
  1594. (length str)
  1595. 'face
  1596. 'underline
  1597. str)
  1598. str)
  1599. ":"
  1600. (let ((str (abbreviate-file-name default-directory)))
  1601. (put-text-property 0
  1602. (length str)
  1603. 'face
  1604. 'underline
  1605. str)
  1606. str)
  1607. "][ESHELL]\n:: "
  1608. (if (eq 0
  1609. eshell-last-command-status)
  1610. ""
  1611. (format "[STATUS:%d] "
  1612. eshell-last-command-status))
  1613. (if (= (user-uid)
  1614. 0)
  1615. "# "
  1616. "$ ")
  1617. ))
  1618. (with-eval-after-load 'eshell
  1619. (defvar eshell-mode-map (make-sparse-keymap))
  1620. ;; (define-key eshell-mode-map (kbd "C-x C-x") (lambda ()
  1621. ;; (interactive)
  1622. ;; (switch-to-buffer (other-buffer))))
  1623. ;; (define-key eshell-mode-map (kbd "C-g") (lambda ()
  1624. ;; (interactive)
  1625. ;; (eshell-goto-prompt)
  1626. ;; (keyboard-quit)))
  1627. (define-key eshell-mode-map (kbd "C-x t") 'eshell-text-mode-toggle)
  1628. (define-key eshell-mode-map (kbd "C-u") 'eshell-kill-input)
  1629. (define-key eshell-mode-map (kbd "C-d") 'eshell-delete-char-or-logout)
  1630. ;; (define-key eshell-mode-map (kbd "C-l")
  1631. ;; 'eshell-clear)
  1632. (define-key eshell-mode-map (kbd "DEL") 'my-eshell-backward-delete-char)
  1633. (define-key eshell-mode-map (kbd "<up>") 'scroll-down-line)
  1634. (define-key eshell-mode-map (kbd "<down>") 'scroll-up-line)
  1635. ;; (define-key eshell-mode-map
  1636. ;; (kbd "C-p") 'eshell-previous-matching-input-from-input)
  1637. ;; (define-key eshell-mode-map
  1638. ;; (kbd "C-n") 'eshell-next-matching-input-from-input)
  1639. (defvar eshell-virtual-targets nil)
  1640. (add-to-list 'eshell-virtual-targets
  1641. '("/dev/less"
  1642. (lambda (str)
  1643. (if str
  1644. (with-current-buffer nil)))
  1645. nil))
  1646. (defvar eshell-visual-commands nil)
  1647. (add-to-list 'eshell-visual-commands "vim")
  1648. (defvar eshell-output-filter-functions nil)
  1649. (add-to-list 'eshell-output-filter-functions
  1650. 'eshell-truncate-buffer)
  1651. (defvar eshell-command-aliases-list nil)
  1652. (mapcar (lambda (alias)
  1653. (add-to-list 'eshell-command-aliases-list
  1654. alias))
  1655. '(
  1656. ;; ("ll" "ls -l $*")
  1657. ;; ("la" "ls -a $*")
  1658. ;; ("lla" "ls -al $*")
  1659. ("git" "git -c color.ui=always $*")
  1660. ("g" "git $*")
  1661. ("eless"
  1662. (concat "cat >>> (with-current-buffer "
  1663. "(get-buffer-create \"*eshell output\") "
  1664. "(erase-buffer) "
  1665. "(setq buffer-read-only nil) "
  1666. "(current-buffer)) "
  1667. "(view-buffer (get-buffer \"*eshell output*\"))"))
  1668. ))
  1669. )
  1670. (add-hook 'eshell-mode-hook
  1671. (lambda ()
  1672. (apply 'eshell/addpath exec-path)
  1673. (set (make-local-variable 'scroll-margin) 0)
  1674. ;; (eshell/export "GIT_PAGER=")
  1675. ;; (eshell/export "GIT_EDITOR=")
  1676. (eshell/export "LC_MESSAGES=C")
  1677. (switch-to-buffer (current-buffer)) ; move buffer top of list
  1678. (set (make-local-variable (defvar hl-line-range-function))
  1679. (lambda ()
  1680. '(0 . 0)))
  1681. ;; (add-to-list 'eshell-visual-commands "git")
  1682. ))
  1683. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1684. ;; my-term
  1685. (defvar my-term nil
  1686. "My terminal buffer.")
  1687. (defvar my-term-function nil
  1688. "Function to create terminal buffer.
  1689. This function accept no argument and return newly created buffer of terminal.")
  1690. (defun my-term (&optional arg)
  1691. "Open terminal buffer and return that buffer.
  1692. If ARG is given or called with prefix argument, create new buffer."
  1693. (interactive "P")
  1694. (if (and (not arg)
  1695. my-term
  1696. (buffer-name my-term))
  1697. (pop-to-buffer my-term)
  1698. (setq my-term
  1699. (save-window-excursion
  1700. (funcall my-term-function)))
  1701. (and my-term
  1702. (my-term))))
  1703. ;; (setq my-term-function
  1704. ;; (lambda ()
  1705. ;; (if (eq system-type 'windows-nt)
  1706. ;; (eshell)
  1707. ;; (if (require 'multi-term nil t)
  1708. ;; (multi-term)
  1709. ;; (ansi-term shell-file-name)))))
  1710. (setq my-term-function (lambda () (eshell t)))
  1711. ;;(define-key my-prefix-map (kbd "C-s") 'my-term)
  1712. (define-key ctl-x-map "i" 'my-term)
  1713. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  1714. ;; misc funcs
  1715. (defalias 'qcalc 'quick-calc)
  1716. (defun memo (&optional dir)
  1717. "Open memo.txt in DIR."
  1718. (interactive)
  1719. (pop-to-buffer (find-file-noselect (concat (if dir
  1720. (file-name-as-directory dir)
  1721. "")
  1722. "memo.txt"))))
  1723. (defvar my-rgrep-alist
  1724. `(
  1725. ;; the silver searcher
  1726. ("ag"
  1727. (executable-find "ag")
  1728. "ag --nocolor --nogroup --nopager --filename ")
  1729. ;; ack
  1730. ("ack"
  1731. (executable-find "ack")
  1732. "ack --nocolor --nogroup --nopager --with-filename ")
  1733. ;; gnu global
  1734. ("global"
  1735. (and (require 'gtags nil t)
  1736. (executable-find "global")
  1737. (gtags-get-rootpath))
  1738. "global --result grep ")
  1739. ;; git grep
  1740. ("gitgrep"
  1741. (eq 0
  1742. (shell-command "git rev-parse --git-dir"))
  1743. "git --no-pager -c color.grep=false grep -nH -e ")
  1744. ;; grep
  1745. ("grep"
  1746. t
  1747. ,(concat "find . "
  1748. "-path '*/.git' -prune -o "
  1749. "-path '*/.svn' -prune -o "
  1750. "-type f -print0 | "
  1751. "xargs -0 grep -nH -e "))
  1752. )
  1753. "Alist of rgrep command.
  1754. Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the
  1755. condition to choose COMMAND when evaluated.")
  1756. (defvar my-rgrep-default nil
  1757. "Default command name for my-rgrep.")
  1758. (defun my-rgrep-grep-command (&optional name alist)
  1759. "Return recursive grep command for current directory or nil.
  1760. If NAME is given, use that without testing.
  1761. Commands are searched from ALIST."
  1762. (if alist
  1763. (if name
  1764. ;; if name is given search that from alist and return the command
  1765. (nth 2 (assoc name
  1766. alist))
  1767. ;; if name is not given try test in 1th elem
  1768. (let ((car (car alist))
  1769. (cdr (cdr alist)))
  1770. (if (eval (nth 1 car))
  1771. ;; if the condition is true return the command
  1772. (nth 2 car)
  1773. ;; try next one
  1774. (and cdr
  1775. (my-rgrep-grep-command name cdr)))))
  1776. ;; if alist is not given set default value
  1777. (my-rgrep-grep-command name my-rgrep-alist)))
  1778. (defun my-rgrep (command-args)
  1779. "My recursive grep. Run COMMAND-ARGS."
  1780. (interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
  1781. nil)))
  1782. (if cmd
  1783. (list (read-shell-command "grep command: "
  1784. cmd
  1785. 'grep-find-history))
  1786. (error "My-Rgrep: Command for rgrep not found")
  1787. )))
  1788. (compilation-start command-args
  1789. 'grep-mode))
  1790. ;; (defun my-rgrep-symbol-at-point (command-args)
  1791. ;; "My recursive grep. Run COMMAND-ARGS."
  1792. ;; (interactive (list (read-shell-command "grep command: "
  1793. ;; (concat (my-rgrep-grep-command)
  1794. ;; " "
  1795. ;; (thing-at-point 'symbol))
  1796. ;; 'grep-find-history)))
  1797. ;; (compilation-start command-args
  1798. ;; 'grep-mode))
  1799. (defmacro define-my-rgrep (name)
  1800. "Define rgrep for NAME."
  1801. `(defun ,(intern (concat "my-rgrep-"
  1802. name)) ()
  1803. ,(format "My recursive grep by %s."
  1804. name)
  1805. (interactive)
  1806. (let ((my-rgrep-default ,name))
  1807. (if (called-interactively-p 'any)
  1808. (call-interactively 'my-rgrep)
  1809. (error "Not intended to be called noninteractively. Use `my-rgrep'"))))
  1810. )
  1811. (define-my-rgrep "ack")
  1812. (define-my-rgrep "ag")
  1813. (define-my-rgrep "gitgrep")
  1814. (define-my-rgrep "grep")
  1815. (define-my-rgrep "global")
  1816. (define-key ctl-x-map "s" 'my-rgrep)
  1817. ;; (defun make ()
  1818. ;; "Run \"make -k\" in current directory."
  1819. ;; (interactive)
  1820. ;; (compile "make -k"))
  1821. (defalias 'make 'compile)
  1822. (define-key ctl-x-map "c" 'compile)
  1823. ;;; emacs.el ends here