Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
e39ae49
refactor(emacs): move line-number-mode and transient-mark-mode into *…
elim Apr 24, 2026
730ff4e
refactor(emacs): move before-save-hook logic from simple into *editin…
elim Apr 27, 2026
6fde2a7
refactor(emacs): move 3 editing keybindings from simple into *editing…
elim Apr 27, 2026
815894d
refactor(emacs): dissolve simple by moving window-split keys to *wind…
elim Apr 27, 2026
08c25d6
refactor(emacs): move editing defaults into *editing-basics
elim Apr 27, 2026
7d60389
refactor(emacs): move completion defaults into *completion
elim Apr 27, 2026
b7fbad9
refactor(emacs): move recursive minibuffer setting into *completion
elim Apr 27, 2026
20caa78
refactor(emacs): move dialog box setting into *interfaces
elim Apr 27, 2026
8d537b9
refactor(emacs): move runtime defaults into early-init.el
elim Apr 27, 2026
6c13b95
refactor(emacs): move yes-or-no prompt behavior into *interfaces
elim Apr 27, 2026
76d40e9
refactor(emacs): rename *environments to *identity
elim Apr 27, 2026
86f1a85
refactor(emacs): move company and company-quickhelp to Code completion
elim Apr 27, 2026
081b92f
refactor(emacs): group window navigation leaves under *window-navigation
elim Apr 27, 2026
e95e905
refactor(emacs): move font-lock setup into appearance section
elim Apr 27, 2026
752b64a
refactor(emacs): group desktop and recentf inside *persistence
elim Apr 27, 2026
183fb1a
refactor(emacs): move browse-url and dictionary into system integration
elim Apr 27, 2026
ad18530
refactor(emacs): move clipmon into system integration
elim Apr 27, 2026
a4ee780
refactor(emacs): move buffer list command into *interfaces
elim Apr 27, 2026
f41fc06
refactor(emacs): make *persistence a top-level sibling of *utilities
elim Apr 27, 2026
90192d9
refactor(emacs): move discovery commands into *interfaces
elim Apr 27, 2026
5e8c4a5
refactor(emacs): move executable bit hook into *editing-basics
elim Apr 27, 2026
b397e4c
refactor(emacs): rename *interfaces to *display-and-interaction
elim Apr 27, 2026
22c0cce
refactor(emacs): move auth-source into system integration
elim Apr 27, 2026
0ab565b
refactor(emacs): rename *utilities to *editor-tools
elim Apr 27, 2026
12cd64b
refactor(emacs): rename persistence heading to Persistence and editor…
elim Apr 27, 2026
6cd1898
refactor(emacs): move wgrep into *editor-tools
elim Apr 27, 2026
63241c4
refactor(emacs): move skk configuration into input method section
elim Apr 27, 2026
cb92b9c
refactor(emacs): move persistent-scratch into *persistence
elim Apr 27, 2026
380a942
refactor(emacs): move google-translate into system integration
elim Apr 27, 2026
8bc1072
refactor(emacs): move help display setup into *display-and-interaction
elim Apr 27, 2026
d532c10
refactor(emacs): move magit into version control section
elim Apr 27, 2026
7db0a52
refactor(emacs): move dired configuration into *display-and-interaction
elim Apr 27, 2026
3670103
refactor(emacs): rename mode sections and add matching headings
elim Apr 27, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions home/takeru/features/emacs/early-init.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@

(set-variable 'ns-use-native-fullscreen nil)
(set-variable 'x-super-keysym 'meta)
(set-variable 'gc-cons-threshold (* 128 1024 1024))
(set-variable 'load-prefer-newer t)
(set-variable 'custom-file (locate-user-emacs-file ".custom.el"))
;; Keep native-comp warnings quiet during startup and async compilation.
(set-variable 'native-comp-async-report-warnings-errors 'silent)

Expand Down
Loading