-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinit.el
2577 lines (2324 loc) · 103 KB
/
init.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; init.el --- "GNU Emacs" main config file -*- mode: Emacs-Lisp; coding: utf-8-unix; lexical-binding: t; -*-
;; Copyright (C) 2013-2024 Taku Watabe
;; Time-stamp: <2024-12-27T06:16:21+09:00>
;; Author: Taku Watabe <[email protected]>
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; This config file is for "GNU Emacs" ONLY.
;; Unsupported other "emacsen" ("XEmacs" and others).
;; This file is VERY LONG.
;; So, I DARE USE file local variables in the FIRST LINE.
;; Show initialization time:
;; (emacs-init-time)
;;; Code:
;; ============================================================================
;; Use "Japanese" environment
;; ============================================================================
(set-language-environment "Japanese")
;; ============================================================================
;; コーディングシステム
;; ============================================================================
;; いくつかのデフォルトだけ決める(他は変えない)
;; ============================================================================
;; WARNING: `prefer-coding-system' は絶対に使わないこと!
;; 例:(prefer-coding-system 'utf-8-unix)
;; システムごとに最適化された、自動設定のデフォルト定義を破壊するため
;; ============================================================================
;; macOS ONLY
(when (member system-type '(darwin))
(set-keyboard-coding-system 'utf-8-unix)
(set-selection-coding-system 'utf-8)
(set-terminal-coding-system 'utf-8)
(setq-default default-process-coding-system '(utf-8 . utf-8)))
;; Windows ONLY
(when (member system-type '(ms-dos windows-nt))
(setq-default default-process-coding-system '(utf-8-unix . japanese-cp932-dos)))
;; ----------------------------------------------------------------------------
;; 「UTF-8(BOM 有)」のエイリアスを作成
;; ----------------------------------------------------------------------------
;; デフォルト名は長いため
;; ----------------------------------------------------------------------------
;; See also:
;; `mule-conf.el'
;; ----------------------------------------------------------------------------
(define-coding-system-alias 'utf-8-bom 'utf-8-with-signature)
;; ----------------------------------------------------------------------------
;; `japanese-cp932' を `shift_jis' として強制認識
;; ----------------------------------------------------------------------------
;; MIME を使用した自動エンコーディング判定を行うコード(`sgml-mode' など)でも
;; 例外が出ないようにする
;; ----------------------------------------------------------------------------
(coding-system-put 'japanese-cp932
:mime-charset 'shift_jis)
;; ----------------------------------------------------------------------------
;; `japanese-shift-jis' を Microsoft Code Page 932 (`japanese-cp932') に変更
;; ----------------------------------------------------------------------------
;; GNU Emacs における Shift_JIS 定義 `japanese-shift-jis' は、
;; 「JIS X 0208 附属書1」を厳格に実装したもの
;; ゆえに、一部文字(例:「~」(U+FF5E))が未定義であるなどし、
;; 実用上問題が発生しやすい
;;
;; そこで、タイムスタンプ時点で最も普及している Microsoft の Shift_JIS 実装
;; Microsoft Code Page 932 (`japanese-cp932') を、
;; デフォルトの Shift_JIS 実装として認識させる
;; ----------------------------------------------------------------------------
;; See also:
;; `japanese.el'
;; ----------------------------------------------------------------------------
(define-coding-system-alias 'japanese-shift-jis 'japanese-cp932)
(define-coding-system-alias 'shift_jis 'japanese-cp932)
(define-coding-system-alias 'sjis 'japanese-cp932)
;; ----------------------------------------------------------------------------
;; 「〜」(U+301C) → 「~」(U+FF5E) 自動変換
;; ----------------------------------------------------------------------------
(coding-system-put 'japanese-cp932 ; Shift_JIS
:encode-translation-table (get 'japanese-ucs-jis-to-cp932-map 'translation-table))
;; ----------------------------------------------------------------------------
;; 「~」(U+FF5E) → 「〜」(U+301C) 自動変換
;; ----------------------------------------------------------------------------
(coding-system-put 'japanese-iso-8bit ; EUC-JP
:encode-translation-table (get 'japanese-ucs-cp932-to-jis-map 'translation-table))
(coding-system-put 'iso-2022-jp ; JIS
:encode-translation-table (get 'japanese-ucs-cp932-to-jis-map 'translation-table))
;; ============================================================================
;; デフォルト値
;; ============================================================================
(custom-set-variables
;;
;; フレームタイトルはカレントバッファ名を基準にする
;;
'(frame-title-format (format "%%b - GNU Emacs v%s" emacs-version))
;;
;; スタートアップ表示は一切させない
;;
;; See also:
;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Startup-Summary.html
;;
'(inhibit-startup-screen t)
'(inhibit-startup-message t)
'(inhibit-startup-buffer-menu t)
'(inhibit-startup-echo-area-message t)
;;
;; *scratch* バッファのデフォルトメッセージは表示しない
;;
'(initial-scratch-message nil)
;;
;; ベルは視覚のみ、音なし
;;
'(visible-bell t)
'(ring-bell-function 'ignore)
;;
;; タイプ時にマウスポインタを自動で隠す
;;
'(make-pointer-invisible t)
;;
;; 空行をフリンジに表示
;;
'(indicate-empty-lines t)
;;
;; ファイル先頭&末尾の状態表示をフリンジに表示
;;
'(indicate-buffer-boundaries 'right)
;;
;; `kill-line' で改行も含めて削除
;;
'(kill-whole-line t)
;;
;; 読取専用バッファにおける `kill-line' 実行時、
;; エコーエリアに関連メッセージが表示されるようにする
;;
'(kill-read-only-ok t)
;;
;; 同一(重複)文字列は `kill-ring' に保存しない
;;
'(kill-do-not-save-duplicates t)
;;
;; `undo' 時に `redo' 履歴は無視する
;;
'(undo-no-redo t)
;;
;; クリップボードと `kill-ring' を同期させる
;;
'(select-enable-clipboard t)
;;
;; Yank (Paste) 時にプロパティを全破棄し、プレーンテキストを利用
;;
'(yank-excluded-properties t)
;;
;; プレビューウインドウの表示を即時にする
;;
'(register-preview-delay nil)
;;
;; スクロール時、自動スクロールをアグレッシブにする
;;
;; See also:
;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Auto-Scrolling.html
'(scroll-conservatively 0) ; default
'(scroll-step 0) ; default
'(scroll-up-aggressively nil) ; default
'(scroll-down-aggressively nil) ; default
;;
;; なるべくウインドウ上下から2行目でスクロール開始
;;
'(scroll-margin 2)
'(maximum-scroll-margin 2)
;;
;; ページ単位スクロール時に行を重複させる
;;
'(next-screen-context-lines 2)
;;
;; スクロール時、なるべく先頭ないし最後の文字にポイントを移動させる
;;
'(scroll-error-top-bottom t)
;;
;; スクロール時、ポイントを同一スクリーン位置に留まらせなくてもよい
;; non-nil にするとスクロールが不安定になりがちなため、nil とする
;;
'(scroll-preserve-screen-position nil)
;;
;; 行間調整はしない
;;
'(line-spacing nil)
;;
;; 行間移動に論理行を使用
;;
'(line-move-visual t)
;;
;; デフォルトの行表示は折り返し「なし」
;;
'(truncate-lines t)
'(truncate-partial-width-windows t)
'(default-truncate-lines t)
;;
;; デフォルトの行文字数を、端末エミュレータのデファクトスタンダードにあわせる
;;
'(fill-column 80)
;;
;; デフォルトのインデント利用文字は、常に半角空白 (U+0020) のみ
;; 必要なら各メジャーモードごとに設定しなおす
;;
'(indent-tabs-mode nil)
;;
;; タブは常にインデントのみ実施
;;
'(tab-always-indent t)
;;
;; 自分用デフォルトタブ文字表示幅
;; 必要なら各メジャーモードごとに設定しなおす
;;
'(tab-width 4)
;;
;; 大文字/小文字を区別しない
;;
'(case-fold-search t)
'(read-buffer-completion-ignore-case t)
'(read-file-name-completion-ignore-case t)
;;
;; 新規ファイル/バッファ作成時の確認は省略
;;
'(confirm-nonexistent-file-or-buffer nil)
;;
;; 最終行への改行(空行)挿入を強制
;;
;; 不要なら各メジャーモードごとに設定させる
;;
'(require-final-newline t)
'(mode-require-final-newline t)
;;
;; `undo' 上限を引き上げ
;;
'(undo-limit 600000)
'(undo-strong-limit 900000) ; (= 1.5 (/ undo-strong-limit undo-limit)) を踏襲
;;
;; 自動バックアップは不要
;;
'(auto-save-default nil)
'(make-backup-files nil)
`(auto-save-list-file-prefix ,(convert-standard-filename "~/.emacs.auto-save-list/.saves-")) ; ローカル環境化
;;
;; ロックファイル不要
;;
'(create-lockfiles nil)
;;
;; `eval-expression' 時の出力を省略させない
;;
'(eval-expression-print-level nil)
'(eval-expression-print-length nil)
;;
;; 補完表示は循環させる
;;
'(completion-cycle-threshold t)
;;
;; 補完表示は縦にする
;;
'(completions-format 'vertical)
;;
;; エコーエリアの最大行数を増やす
;;
'(message-log-max 2000)
;;
;; ミニバッファで各種コマンドを利用できるようにする
;;
'(enable-recursive-minibuffers t)
;;
;; Trash(「ごみ箱」など)が使える場合はそちらへ廃棄
;;
'(delete-by-moving-to-trash t)
;;
;; YES/NO 選択を簡略化
;;
'(use-short-answers t)
;;
;; Option キーを `meta' とみなす (macOS GUI ONLY)
;;
`(mac-option-modifier ,(if (display-graphic-p)
''meta
''(:function alt :mouse alt)))
;;
;; Command キーは何もしない (macOS GUI ONLY)
;;
`(mac-command-modifier ,(if (display-graphic-p)
nil
''meta))
;;
;; 右 <Alt> + 左 <Ctrl> で <AltGr> が発送されないようにする (Windows ONLY)
;; <AltGr> は独自のキーコードであり、<C-M-> であるとみなされない
;;
;; See also:
;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Windows-Keyboard.html
;;
'(w32-recognize-altgr nil)
;;
;; 証明書
;;
`(gnutls-trustfiles ',(mapcar 'convert-standard-filename
(if (member system-type '(ms-dos windows-nt))
'("C:/programs/cygwin/etc/pki/tls/certs/ca-bundle.trust.crt"
"C:/programs/cygwin/etc/pki/tls/certs/ca-bundle.crt")
'("/usr/local/etc/openssl/cert.pem"
"/usr/local/etc/libressl/cert.pem"
"/private/etc/ssl/cert.pem"
"/etc/ssl/cert.pem")))))
;; ============================================================================
;; リージョンの大文字/小文字変換で、実行の是非を問わせない
;; ============================================================================
(put 'upcase-region 'disabled nil)
(put 'downcase-region 'disabled nil)
;; ============================================================================
;; ベル音 (Windows ONLY)
;; ============================================================================
(if (fboundp #'set-message-beep) ; Windows 環境でのみ存在
;; なし
(set-message-beep 'silent))
;; ============================================================================
;; NSM (Network Security Manager)
;; ============================================================================
;; WARNING: `package' といったネットワークセキュリティを利用するパッケージの
;; 利用前に設定を実施しなければならない
;; 後のほうで `nsm-settings-file' を設定してしまうと意味がない
;; ============================================================================
;; HACK: `require' しておかないと、
;; なぜか `custom-set-variables' が効かない
;; ============================================================================
(when (require 'nsm nil :noerror)
(custom-set-variables
;; ローカル環境にのみ保存
'(nsm-settings-file "~/.emacs.network-security.data")))
;; ============================================================================
;; パッケージマネージャ (by `package')
;; ============================================================================
;; `defcustom' によって定義されたリストヘシンボルを追加したいため、
;; あえて明示的にロード
(when (require 'package nil :noerror)
;; 確実に定義された後で追加
(add-to-list 'package-archives '("MELPA-STABLE" . "https://stable.melpa.org/packages/") t)
(add-to-list 'package-archives '("MELPA" . "https://melpa.org/packages/") t)
;; あらゆるパッケージロードに先んじて初期化は必須
(package-initialize))
;; ============================================================================
;; 詳細設定補助 (by `leaf')
;; ============================================================================
;; WARNING: `package' が必ず使える状況を前提とする
;; `package' の初期化より後に設定しなければならない
;; ============================================================================
(unless (package-installed-p 'leaf)
(package-refresh-contents)
(package-install 'leaf))
;; ============================================================================
;; `leaf' キーワード群
;; ============================================================================
(leaf leaf-keywords
:ensure t
:config
(leaf-keywords-init))
;; ============================================================================
;; 自作ユーティリティ
;; ============================================================================
(leaf my-utils
:load-path* "utils"
:require t)
;; ============================================================================
;; サーバ化
;; ============================================================================
;; WARNING: 起動を前提としたパッケージが存在するため、
;; なるべく早いタイミングで開始
;; ============================================================================
(leaf server
:custom (;; ローカル環境にのみ保存
(server-auth-dir . "~/.emacs.server"))
:config
(server-start t))
;; ============================================================================
;; グローバルキーバインド
;; ============================================================================
(leaf *global-keybind
:leaf-defer nil
:after my-utils
:bind (;; ヘルプ表示を割り当てなおす
("C-x ?" . help-command)
;; ウインドウ中央表示はもっともシンプルなものを使用
;; `recenter-top-bottom' は使わない
("C-l" . recenter)
;; リージョン範囲をソート
("C-c s" . sort-lines)
;; 1つ前のエラーを表示
("C-x \\" . previous-error)
;; メジャーモードを再適用後に `revert-buffer-quick' 実行
("C-c r" . my-revert-buffer-quick-with-normal-mode)
;; 行頭移動は物理行
("C-a" . my-beginning-of-smart-indented-line)
;; 前のウインドウに移動
("C-x p" . my-other-window-reverse)
;; 前のフレームに移動
("C-x 5 p" . my-other-frame-reverse)
;; 折り返し表示を強制切替
("C-x w" . my-toggle-truncate-lines-force)
;; カーソル位置に YEN SIGN (U+00A5) を挿入
("C-c i \\" . my-insert-yen-sign)
;; カーソル位置にファイル名を挿入
("C-c i f" . my-insert-file-name)
;; カーソル位置にファイルパスを挿入
("C-c i p" . my-insert-file-path)
;; 一括エンコーディング変換
("C-c RET f" . my-change-files-coding-system)
;; フレーム背景透明度切替
("C-c w t" . my-toggle-frame-transparency))
:config
;; <Backspace> と <DEL> を 交換
(keyboard-translate ?\C-h ?\C-?)
;; <DEL> を <C-d> にする
(keyboard-translate ?\C-? ?\C-d)
;; `ido-undo-merge-work-directory' 実行のため <C-z> を押しすぎた場合、
;; `suspend-frame' が起動しないよう配慮
(global-unset-key (kbd "C-z"))
) ; End of *global-keybind
;; ============================================================================
;; モードライン
;; ============================================================================
(leaf *modeline
:custom (;; ニーモニックを改行コードにちなんだ表現にする
(eol-mnemonic-dos . "[CRLF]")
(eol-mnemonic-mac . "[CR]")
(eol-mnemonic-unix . "[LF]")
(eol-mnemonic-undecided . "")
;; カーソルの行と列表記を好みに変更
(mode-line-position-column-line-format . '(" (%l:%c)")))
:config
(line-number-mode +1)
(column-number-mode +1)
(size-indication-mode +1))
;; ============================================================================
;; タイムスタンプ記述
;; ============================================================================
(leaf time-stamp
:hook ((before-save-hook . time-stamp))
:custom `(;; ISO 8601 (JIS X 0301) 形式にする
;;
;; See also:
;; https://ja.wikipedia.org/wiki/ISO_8601
;;
;; WARNING: `time-stamp-time-zone' を "+09:00" にしても、
;; コロン以降が無視される
;;
;; タイムゾーンは別途指定、以下理由:
;;
;; `time-stamp-string' の "%Z" は
;; (format-time-string "%Z") と同義
;; この値をそのまま扱うため、
;; 環境の差異が出やすくマトモに使えない
;;
;; `time-stamp-string' の "%z" は
;; (format-time-string "%#Z") と同義
;; (format-time-string "%z") ではない点に注意
;; この値をそのまま扱うため、
;; 環境の差異が出やすくマトモに使えない
;; また `format-time-string' 側のバグにより、
;; 環境次第で文字化けする
;;
;; Windows 環境(環境変数 %TZ% 未指定かつ +09:00 ゾーン)では
;; 次の値が使用されてしまう
;; (どちらもエンコーディングは `cp932-2-byte'):
;;
;; "%Z" (≒ "%Z"): #("東京 (標準時)" 0 8
;; "%z" (≒ "%#Z"): #("東京 (婦準時)" 0 8
;;
;; 「標」→「婦」に文字化けしているのがわかる
;; また、`propertize' されている
;;
;; FIXME: 現状、OS 側の動的なタイムゾーン変更に追従不能
;; 都度評価にしたい
(time-stamp-format . ,(concat "%:y-%02m-%02dT%02H:%02M:%02S"
(replace-regexp-in-string
;; 強制的にコロン付与
;; コロンなし形式を返されるため
;; 厳密チェックで "±1259" のみ利用
;; → 他は無視
"\\`\\([\\+\\-]\\(?:0[0-9]\\|1[0-2]\\)\\)\\([0-5][0-9]\\)\\'"
"\\1:\\2"
;; タイムゾーンが "+0000" を返す
;; あえて "Z" への変換はしない
(format-time-string "%z"))))))
;; ============================================================================
;; IME patch (Windows ONLY)
;; ============================================================================
;; WARNING: 全ての IM に影響するため、
;; なるべく早いタイミングでインストール
;; ============================================================================
(leaf tr-ime
:when (member system-type '(ms-dos windows-nt))
:ensure t
:custom '(;; インプットメソッド (IM) 識別名 "W32-IME" は
;; `tr-ime' 未適用だと使えない
(default-input-method . "W32-IME")
(w32-ime-buffer-switch-p . t)
(w32-ime-mode-line-state-indicator . "[Aa]")
(w32-ime-mode-line-state-indicator-list . '("[--]" "[あ]" "[Aa]")))
:config
(tr-ime-advanced-install t)
(w32-ime-initialize))
;; ============================================================================
;; Input Method (IM)
;; ============================================================================
(leaf *input-method
;; WARNING: `window-system' 外の環境(例:ターミナル)では例外発生
:when window-system
:after my-utils
:hook (;; -------------------------------------------------------------------
;; ウインドウ選択後、IM の状態に応じてフェイス `cursor' を変更
;;
;; `cursor' はフレーム単位
;; しかし、`current-input-method' はバッファローカル変数
;; よって、バッファ間で `current-input-method' 値が異なれば、
;; `cursor' が意図せぬ状態になる
;;
;; ゆえに、ウインドウ切替のタイミングでの `cursor' 明示変更が必要
;;
;; バッファ切替時は、特に何もしない
;; -------------------------------------------------------------------
;; `select-window' 実行後に起動するフックを利用
(buffer-list-update-hook . my-change-cursor-faces-by-current-input-method)
;; IM の activate/deactivate と連動させる
(input-method-activate-hook . my-change-cursor-faces-by-current-input-method)
(input-method-deactivate-hook . my-change-cursor-faces-by-current-input-method)
;; macOS ONLY
(mac-selected-keyboard-input-source-change-hook . my-change-cursor-faces-by-current-input-method)
(mac-enabled-keyboard-input-sources-change-hook . my-change-cursor-faces-by-current-input-method)))
;; ============================================================================
;; GNU/Linux, UNIX, macOS 環境変数 $PATH 自動取得&設定
;; ============================================================================
(leaf exec-path-from-shell
:unless (member system-type '(ms-dos windows-nt))
:ensure t
:config
(exec-path-from-shell-initialize))
;; ============================================================================
;; nvm 経由での Node.js 利用をサポート
;; ============================================================================
(leaf nvm
:unless (member system-type '(ms-dos windows-nt))
:ensure t
:hook ((change-major-mode-after-body-hook . my-nvm-use-for-buffer))
:init
(defun my-nvm-use-for-buffer ()
"Run `nvm-use-for-buffer', but crush the error."
(ignore-errors (nvm-use-for-buffer)))
:config
;; `~/.nvmrc' がなければ何もしない
(ignore-errors (nvm-use-for)))
;; ============================================================================
;; Node.js モジュールパス解決
;; ============================================================================
(leaf add-node-modules-path
:ensure t
:hook ((prog-mode-hook . add-node-modules-path)
(text-mode-hook . add-node-modules-path)))
;; ============================================================================
;; カラーテーマ (Use "Modus" theme, latest MELPA version)
;; ============================================================================
(leaf modus-themes
:ensure t
:require t ; MELPA 版を利用
:custom ((modus-themes-bold-constructs . t)
(modus-themes-common-palette-overrides . '((comment yellow-faint)
(string green-faint)
(border-mode-line-active unspecified)
(border-mode-line-inactive unspecified)
(bg-mode-line-active bg-green-subtle))))
:config
(modus-themes-load-theme 'modus-vivendi))
;; ============================================================================
;; ANSI エスケープシーケンス
;; ============================================================================
(leaf ansi-color
:config
;; `comint-mode' および派生モードで、ANSI エスケープシーケンスの解釈を開始
(ansi-color-for-comint-mode-on))
;; ============================================================================
;; URL → Web browser パススルー
;; ============================================================================
(leaf browse-url
:custom ((browse-url-browser-function . 'eww-browse-url)))
;; ============================================================================
;; EWW (Emacs Web Wowser, Web Browser)
;; ============================================================================
(leaf eww
:bind (("C-c C-e" . eww))
:custom ((eww-search-prefix . "https://www.google.co.jp/search?&q=")
(eww-history-limit . nil)
(eww-auto-rename-buffer . 'title)))
;; ============================================================================
;; 未コミット diff
;; ============================================================================
(leaf diff-hl
:ensure t
:hook ((magit-pre-refresh-hook . diff-hl-magit-pre-refresh)
(magit-post-refresh-hook . diff-hl-magit-post-refresh))
:init
(diff-hl-margin-mode +1)
(diff-hl-dired-mode +1)
:global-minor-mode global-diff-hl-mode)
;; ============================================================================
;; スペルチェッカ
;; ============================================================================
(leaf ispell
:custom ((ispell-dictionary . "english")
(ispell-extra-args . '("--sug-mode=fast"
"--run-together"
"--run-together-limit=5"
"--run-together-min=2"))))
;; ============================================================================
;; Git インターフェース
;; ============================================================================
(leaf magit
:ensure t
:bind (("C-x g" . magit-status))
:custom ((auto-revert-buffer-list-filter . #'magit-auto-revert-buffer-p)))
;; ============================================================================
;; TRAMP (Transparent Remote Access, Multiple Protocols)
;; ============================================================================
(leaf tramp
:defer-config
(leaf tramp-cache
:custom (;; WARNING: `tramp' ロード後に実行しないと適用されない
;; ローカル環境にのみ保存
(tramp-persistency-file-name . "~/.emacs.tramp"))))
;; ============================================================================
;; ファイル名を元に、より唯一性の高いバッファ名を生成
;; ============================================================================
(leaf uniquify
:require t
:custom ((uniquify-buffer-name-style . 'forward)
(uniquify-ignore-buffers-re . "^*[^*]+*\\-")))
;; ============================================================================
;; ターミナルエミュレータ
;; ============================================================================
(leaf vterm
:unless (member system-type '(ms-dos windows-nt))
:ensure t
:bind (("C-`" . vterm-toggle)
(:vterm-mode-map
("C-y" . vterm-yank) ; なぜかデフォルトで割当済なのに機能していない
("C-RET" . vterm-toggle-insert-cd)))
:custom ((vterm-shell . "bash")
(vterm-max-scrollback . 100000)
(vterm-enable-manipulate-selection-data-by-osc52 . t)
(vterm-buffer-name-string . "vterm - %s"))
:defer-config
;; WARNING: 確実に `vterm-keymap-exceptions' が存在する状態で「追加」しないと
;; 他のキーバインドに影響が出る
;;
;; For `windmove'
(add-to-list 'vterm-keymap-exceptions "C-S-b" t)
(add-to-list 'vterm-keymap-exceptions "C-S-f" t)
(add-to-list 'vterm-keymap-exceptions "C-S-n" t)
(add-to-list 'vterm-keymap-exceptions "C-S-p" t))
;; ============================================================================
;; ターミナルエミュレータ (`vterm') 切替
;; ============================================================================
(leaf vterm-toggle
:unless (member system-type '(ms-dos windows-nt))
:ensure t
:after vterm
:custom ((vterm-toggle-scope . 'project)))
;; ============================================================================
;; ウインドウ移動キーを直感的にする
;; ============================================================================
(leaf windmove
:bind (("C-S-b" . windmove-left)
("C-S-f" . windmove-right)
("C-S-n" . windmove-down)
("C-S-p" . windmove-up))
:custom (;; フレーム端のウインドウでは無限スクロールするようにふるまう
;; 「マリオブラザーズ」左右画面端におけるループのような動き
(windmove-wrap-around . t)))
;; ============================================================================
;; Minor modes
;; ============================================================================
;; ------------------------------------
;; アクティビティ管理
;; ------------------------------------
(leaf activities
:ensure t
:bind (("C-c a n" . activities-new)
("C-c a d" . activities-define)
("C-c a a" . activities-resume)
("C-c a s" . activities-save-all)
("C-c a S" . activities-suspend)
("C-c a k" . activities-kill)
("C-c a RET" . activities-switch)
("C-c a b" . activities-switch-buffer)
("C-c a r" . activities-revert)
("C-c a l" . activities-list))
:custom ((activities-set-frame-name . nil))
:global-minor-mode activities-mode)
;; ------------------------------------
;; 絞り込み:スペース区切りによる複数キーワード
;; ------------------------------------
(leaf affe
:ensure t
:after (consult orderless)
:custom ((affe-regexp-function . #'orderless-pattern-compiler)
(affe-highlight-function . #'orderless--highlight))
:config
(consult-customize affe-grep
:preview-key (kbd "M-.")))
;; ------------------------------------
;; 各種検索/置換強化
;; ------------------------------------
(leaf anzu
:ensure t
:bind (("M-%" . anzu-query-replace)
("C-M-%" . anzu-query-replace-regexp))
:custom ((anzu-minimum-input-length . 3)
(anzu-search-threshold . 1000)
(anzu-replace-to-string-separator . " -> "))
:init
;; `migemo' 利用可能時
(leaf anzu-migemo
:after migemo
:custom ((anzu-use-migemo . t)))
:global-minor-mode global-anzu-mode)
;; ------------------------------------
;; 他ウインドウ弱調化
;; ------------------------------------
(leaf auto-dim-other-buffers
:ensure t
:hook ((window-setup-hook . auto-dim-other-buffers-mode)))
;; ------------------------------------
;; 自動バッファ再読込
;; ------------------------------------
(leaf autorevert
:custom (;; ファイル監視(通知)を使わない
;;
;; GNU Emacs の仕様では 1024 - 50 = 974 個以上のファイル監視を
;; 登録できない
;; 少しでもファイル監視を減らすため無効化
;;
;; See also:
;; https://www.reddit.com/r/emacs/comments/mq2znn/comment/gugo0n4/?context=3
(auto-revert-use-notify . nil)
(auto-revert-check-vc-info . t))
:global-minor-mode global-auto-revert-mode)
;; ------------------------------------
;; フィルタ → 選択 → アクション
;; ------------------------------------
(leaf avy
:ensure t
:bind (("M-j" . avy-goto-char-timer)
(:isearch-mode-map
("M-j" . avy-isearch))))
;; ------------------------------------
;; ブックマーク
;; ------------------------------------
(leaf bookmark
:custom ((bookmark-version-control . t)
;; ローカル環境にのみ保存
(bookmark-default-file . "~/.emacs.bookmark.el")))
;; ------------------------------------
;; 共通コマンドインタプリタ (Windows ONLY)
;; ------------------------------------
(leaf comint
:when (member system-type '(ms-dos windows-nt))
:hook ((comint-mode-hook . my-comint-mode-initialize))
:custom ((comint-scroll-to-bottom-on-input . 'all)
(comint-move-point-for-output . 'all)
(comint-buffer-maximum-size . 5000)
(comint-process-echoes . t)
(comint-eol-on-send . t))
:init
(defun my-comint-mode-initialize ()
"Initialize `comint-mode'."
(setq-local comint-input-sender-no-newline t))
;; プロセスごとのコーディングシステム変換表
;;
;; See also:
;; https://www.emacswiki.org/emacs/ShellMode#toc1
(add-to-list 'process-coding-system-alist
'("[bB][aA][sS][hH]" . (undecided-dos . undecided-unix))))
;; ------------------------------------
;; 補完フレームワーク
;; ------------------------------------
(leaf company
:ensure t
:hook ((after-init-hook . global-company-mode))
:custom (;; `company'
(company-tooltip-limit . 20)
(company-tooltip-minimum . 10)
(company-tooltip-offset-display . 'lines)
(company-tooltip-align-annotations . t)
(company-tooltip-flip-when-above . t)
(company-transformers . '(company-sort-by-occurrence))
(company-minimum-prefix-length . 1)
(company-abort-manual-when-too-short . t)
(company-idle-delay . 0.25)
(company-selection-wrap-around . t)
;; `company-dabbrev'
(company-dabbrev-other-buffers . t)
(company-dabbrev-downcase . nil)
;; `company-dabbrev-code'
(company-dabbrev-code-modes . '(batch-file-mode
csharp-mode
css-mode
erlang-mode
haskell-mode
html-mode
jde-mode
js-mode
js2-mode
lua-mode
prog-mode
python-mode
scss-mode))
(company-dabbrev-code-other-buffers . t)
(company-dabbrev-code-everywhere . t)
(company-dabbrev-code-ignore-case . t)))
;; ------------------------------------
;; 補完フレームワーク:拡張(ポップアップ)
;; ------------------------------------
(leaf company-box
:ensure t
:hook ((company-mode-hook . company-box-mode)))
;; ------------------------------------
;; 補完フレームワーク:拡張(補完候補のソート)
;; ------------------------------------
(leaf company-statistics
:after company
:ensure t
:custom ((company-statistics-size . 500)
;; ローカル環境にのみ保存
(company-statistics-file . "~/.emacs.company-statistics-cache.el"))
:global-minor-mode t)
;; ------------------------------------
;; コンパイル
;; ------------------------------------
(leaf compile
:after (nvm exec-path-from-shell)
:bind (("C-c x" . compile))
:hook ((compilation-filter-hook . ansi-color-compilation-filter))
:custom ((compilation-window-height . 15)
;; ビルドツール/タスクランナーに依存させない
(compile-command . "")
(compilation-scroll-output . t)
(compilation-always-kill . t)
(compilation-context-lines . t))
:init
;; ----------------------------------
;; HACK: コンパイル完了後、モードラインにも状態を簡易表示
;; ----------------------------------
(defun my-compilation-message (cur-buffer msg)
"Show status messages when compile done in `compilation-mode'."
(let ((msg-text (string-trim msg)) ; 改行文字が含まれうる問題を回避
(msg-title (buffer-name))
(msg-face 'compilation-mode-line-fail))
(message "%s: %s"
msg-title
(propertize msg-text
'face
(if (string-equal "finished" msg-text)
'compilation-mode-line-exit
'compilation-mode-line-fail)))))
(add-to-list 'compilation-finish-functions 'my-compilation-message)
:config
;; ----------------------------------
;; HACK: コンパイル完了後、正常に終了していれば自動でウインドウを閉じる
;; ----------------------------------
(defcustom my-compilation-auto-quit-window-enable-buffer-names '("*compilation*")
"Created buffer names by `compile' command."
:group 'compilation
:type '(list (repeat string)))
;; `process-status' と `exit-status' の値も得たいので、アドバイスを利用
;; `compilation-finish-functions' にフックした関数では `msg' しか
;; 参照できないため
(defun my-compilation-auto-quit-window (process-status exit-status msg)
"Run `quit-window' when `compile' successed."
(if (and (member (buffer-name)
my-compilation-auto-quit-window-enable-buffer-names)
(or (and (equal process-status 'exit)
(zerop exit-status))
;; 改行文字が含まれうる問題を回避
(string-equal "finished" (string-trim msg))))
(quit-window nil (get-buffer-window))))
(advice-add #'compilation-handle-exit
:after
#'my-compilation-auto-quit-window))