-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
534 lines (444 loc) · 18.1 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
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(ein:jupyter-server-use-subcommand "server")
'(ein:output-area-inlined-images t t)
'(grep-command "grep --color=auto -nH --null -e ")
'(grep-find-command
'("find . -type f -exec grep --color=auto -nH --null -e \\{\\} +" . 54))
'(grep-find-ignored-directories
'("SCCS" "RCS" "CVS" "MCVS" ".src" ".svn" ".git" ".hg" ".bzr" "_MTN" "_darcs" "{arch}" "builds"))
'(grep-find-template
"find -H <D> <X> -type f <F> -exec grep <C> -nH --null -e <R> \\{\\} +")
'(grep-find-use-xargs 'exec-plus)
'(grep-highlight-matches 'auto)
'(grep-template "grep <X> <C> -nH --null -e <R> <F>")
'(grep-use-null-device nil)
'(grep-use-null-filename-separator t)
'(org-export-backends '(ascii html icalendar latex md odt))
'(package-selected-packages
'(web-mode eruby-mode enh-ruby-mode robe robe-mode prettier-js ox-hugo clojure-mode vterm logview python-black robot-mode yaml-mode auto-dim-other-buffers :pyvenv :transient paredit orderless flycheck company poetry exec-path-from-shell lsp-ui lsp-mode rainbow-delimiters eyebrowse fira-code-mode projectile vertico magit use-package)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(font-lock-comment-face ((t (:foreground "light slate gray" :slant normal)))))
(setq mac-command-modifier 'meta) ;; Use Command as Meta
(global-unset-key (kbd "C-z"))
(set-frame-font "Fira Code-12" t t) ;; Set Fira Code as the default font
(server-start)
(defvar bootstrap-version)
(let ((bootstrap-file
(expand-file-name
"straight/repos/straight.el/bootstrap.el"
(or (bound-and-true-p straight-base-dir)
user-emacs-directory)))
(bootstrap-version 7))
(unless (file-exists-p bootstrap-file)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el"
'silent 'inhibit-cookies)
(goto-char (point-max))
(eval-print-last-sexp)))
(load bootstrap-file nil 'nomessage))
(defvar personal-keybindings nil
"A list to store personal keybindings.")
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
;; Comment/uncomment this line to enable MELPA Stable if desired. See `package-archive-priorities`
;; and `package-pinned-packages`. Most users will not need or want to do this.
;;(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t)
(package-initialize)
(eval-when-compile
;; Following line is not needed if use-package.el is in ~/.emacs.d
(require 'use-package))
(require 'use-package-ensure)
(setq use-package-always-ensure t)
;; Prefix non-unique buffer names with their parent dir
(require 'uniquify)
(setq uniquify-buffer-name-style 'forward)
;; Better window movement
(windmove-default-keybindings)
;; UI customization
(menu-bar-mode -1)
(global-display-line-numbers-mode)
(global-hl-line-mode nil)
(tool-bar-mode -1)
(scroll-bar-mode -1)
(blink-cursor-mode 0)
(setq-default frame-title-format "%b (%f)")
(setq ring-bell-function 'ignore)
(setq-default left-fringe-width 10)
;; Scrolling settings
;; Touchpad - try more extreme values
(pixel-scroll-precision-mode 1)
;; Mouse wheel
(setq mouse-wheel-progressive-speed nil) ;; Disable acceleration
(setq mouse-wheel-scroll-amount '(3 ((shift) . 1)))
;; Performance
(setq inhibit-compacting-font-caches t)
(setq-default bidi-display-reordering nil)
(setq jit-lock-defer-time 0.05)
;; Increase garbage collection threshold
(setq gc-cons-threshold 100000000) ;; 100MB
(setq gc-cons-percentage 0.6)
;; Disable line numbers for some modes
(dolist (mode '(org-mode-hook
term-mode-hook
vterm-mode-hook
shell-mode-hook
treemacs-mode-hook
eshell-mode-hook
pdf-view-mode-hook))
(add-hook mode (lambda () (display-line-numbers-mode 0))))
;; Run garbage collection when Emacs is idle or out of focus
(add-hook 'focus-out-hook #'garbage-collect)
(run-with-idle-timer 5 t #'garbage-collect)
;; Split windows vertically instead of horizontally
(setq split-width-threshold 0)
(setq split-height-threshold nil)
;; Clickable links
(goto-address-mode)
(show-paren-mode 1)
; Delete trailing whitespace on save
(add-hook 'before-save-hook 'delete-trailing-whitespace)
(setq inhibit-startup-message t)
;; Select the help window when it opens
(setq help-window-select t)
;; Interactive search key bindings. By default, C-s runs
;; isearch-forward, so this swaps the bindings.
(global-set-key (kbd "C-s") 'isearch-forward-regexp)
(global-set-key (kbd "C-r") 'isearch-backward-regexp)
(global-set-key (kbd "C-M-s") 'isearch-forward)
(global-set-key (kbd "C-M-r") 'isearch-backward)
;; Don't use hard tabs
(setq-default indent-tabs-mode nil)
(defun toggle-comment-on-line ()
"comment or uncomment current line"
(interactive)
(comment-or-uncomment-region (line-beginning-position) (line-end-position)))
(global-set-key (kbd "C-;") 'toggle-comment-on-line)
;; MISC
;; Changes all yes/no questions to y/n type
(fset 'yes-or-no-p 'y-or-n-p)
(setq create-lockfiles nil)
;; Global Key Bindings
(global-set-key (kbd "C-x C-b") 'ibuffer)
(setq backup-directory-alist `(("." . "~/.saves")))
(setq backup-by-copying t)
;; Store auto-save files in ~/.saves too
(setq auto-save-file-name-transforms
`((".*" ,(expand-file-name "~/.saves/") t)))
;; Make sure the directory exists
(make-directory "~/.saves/" t)
(use-package exec-path-from-shell
:ensure t
:if (memq window-system '(mac ns x))
:config
(setq exec-path-from-shell-variables '("PATH"))
(exec-path-from-shell-initialize))
(use-package paredit
:ensure t)
(use-package direnv
:config
(direnv-mode))
(use-package magit
:config
;; (setq magit-display-buffer-function 'magit-display-buffer-fullframe-status-v1)
(setq magit-display-buffer-function 'magit-display-buffer-same-window-except-diff-v1)
(setenv "GIT_CONFIG_GLOBAL" (expand-file-name "~/.gitconfig")))
(use-package vertico
:init
(vertico-mode))
(use-package projectile
:ensure t
:diminish projectile-mode
:config
(setq projectile-indexing-method 'native) ;; Use Git for indexing
(setq projectile-enable-caching t) ;; Enable caching for faster performance
(setq projectile-git-command "git ls-files -zco --exclude-standard ':!logs/**'") ;; Use Git to respect .gitignore
(setq projectile-globally-ignored-directories '("node_modules" "vendor" ".cache" "log" "tmp" "builds"))
(setq projectile-globally-ignored-files '("*.log" "*.tmp" "*.map"))
;; Enable Projectile globally
(projectile-mode +1)
(defun my/projectile-setup-vterm ()
"Open multiple vterm buffers with specific names when switching to a project."
(when (projectile-project-p)
(let* ((project-name (projectile-project-name))
(term1-name (format "*%s-shell*" project-name))
(term2-name (format "*%s-server*" project-name))
(term3-name (format "*%s-console*" project-name)))
(unless (get-buffer term1-name)
(with-current-buffer (vterm)
(rename-buffer term1-name)
(vterm-send-string (format "cd %s\n" (projectile-project-root)))))
(unless (get-buffer term2-name)
(with-current-buffer (vterm)
(rename-buffer term2-name)
(vterm-send-string (format "cd %s\n" (projectile-project-root)))))
(unless (get-buffer term3-name)
(with-current-buffer (vterm)
(rename-buffer term3-name)
(vterm-send-string (format "cd %s\n" (projectile-project-root))))))))
;; Attach hook to run when switching projects
(add-hook 'projectile-after-switch-project-hook #'my/projectile-setup-vterm)
;; Optional: Set up a keymap prefix for Projectile commands
:bind-keymap
("C-c p" . projectile-command-map) )
(use-package kaolin-themes
:config
(load-theme 'kaolin-galaxy t))
;; (use-package fira-code-mode
;; :custom (fira-code-mode-disabled-ligatures '("[]" "x"))
;; :hook prog-mode)
;; (use-package eyebrowse
;; :init
;; (eyebrowse-mode))
(use-package rainbow-delimiters
:ensure t
:init
:hook (prog-mode . rainbow-delimiters-mode))
(use-package company
:config
(setq company-idle-delay 0.3)
(global-company-mode t))
(use-package flycheck
:ensure t
:init
(global-flycheck-mode 1))
;; (use-package lsp-mode
;; :hook
;; ((python-mode . lsp))
;; :commands lsp)
;; (use-package lsp-ui
;; :commands lsp-ui-mode)
(use-package transient
:ensure t)
(use-package pyvenv
:ensure t)
(use-package poetry
:config (poetry-tracking-mode))
(use-package python-black
:demand t
:after python
:hook (python-mode . python-black-on-save-mode-enable-dwim))
(use-package auto-dim-other-buffers
:init
(add-hook 'after-init-hook (auto-dim-other-buffers-mode t)))
(use-package clojure-mode
:demand t)
(use-package orderless
:init
(setq completion-styles '(orderless basic)
completion-category-defaults nil
completion-category-overrides '((file (styles partial-completion)))))
(use-package yaml-mode)
(use-package robot-mode)
(use-package logview)
(use-package vterm
:ensure t
:config
(global-set-key (kbd "C-x v") #'vterm)
(setq vterm-environment
(append vterm-environment '("VISUAL=emacsclient"))))
(with-eval-after-load 'ox
(require 'ox-hugo))
(use-package ox-hugo
:ensure t ;Auto-install the package from Melpa
:pin melpa ;`package-archives' should already have ("melpa" . "https://melpa.org/packages/")
:after ox)
(setq org-directory "~/Library/CloudStorage/Dropbox/org")
(add-to-list 'load-path "/Users/amackera/.emacs.d/asdf")
(require 'asdf)
(asdf-enable)
(use-package prettier-js
:ensure t
:init
(add-hook 'js-mode-hook 'prettier-js-mode))
(setq js-indent-level 2)
(use-package enh-ruby-mode
:ensure t
:init
(add-hook 'enh-ruby-mode-hook
(lambda ()
(eglot-ensure)
(flyckeck-select-checker 'ruby-standard)
(flycheck-mode 1)
(setq ruby-indent-level 2) ; Use 2 spaces for indentation
(setq ruby-indent-tabs-mode nil) ; Use spaces instead of tabs
(setq ruby-deep-indent-paren nil) ; Disable deep indentation inside parentheses
;; Customize hash indentation
(setq ruby-align-chained-calls nil) ; Prevent chaining alignment
(setq ruby-align-to-stmt-keyword nil) ; No alignment to statement keywords
)))
(with-eval-after-load 'flycheck
;; Disable RuboCop for Ruby files
(setq-default flycheck-disabled-checkers '(ruby-rubocop)))
(add-to-list 'auto-mode-alist '("\\.rb\\'" . enh-ruby-mode))
(use-package eglot
:ensure t
:hook
((enh-ruby-mode . eglot-ensure)
(js-mode . eglot-ensure)
(js-ts-mode . eglot-ensure)
(typescript-mode . eglot-ensure)
(tsx-ts-mode . eglot-ensure))
:config
;; Add Solargraph as the server for enh-ruby-mode
(add-to-list 'eglot-server-programs
'(enh-ruby-mode . ("solargraph" "socket" "--port" :autoport)))
;; Use typescript-language-server for JS/TS/JSX/TSX
(add-to-list 'eglot-server-programs
'((js-mode js-ts-mode typescript-mode tsx-ts-mode)
. ("typescript-language-server" "--stdio")))
;; Ensure eglot is the xref backend
(add-hook 'eglot-managed-mode-hook
(lambda ()
(setq-local xref-backend-functions '(eglot-xref-backend)))))
;; Unbind js-find-symbol in js-mode and force xref-find-definitions
(with-eval-after-load 'js
(define-key js-mode-map (kbd "M-.") nil)
(define-key js-mode-map (kbd "M-.") #'xref-find-definitions))
;; Global fallback for M-. to use xref
(global-set-key (kbd "M-.") #'xref-find-definitions)
(setq warning-minimum-level :error)
;; (use-package minitest
;; :ensure t
;; :init
;; (add-hook 'enh-ruby-mode-hook 'minitest-mode))
(use-package minitest
:ensure t
:init
(add-hook 'enh-ruby-mode-hook 'minitest-mode)
:config
(defun my-minitest-run-test-at-point ()
"Run the test containing the point, handling special characters like #."
(interactive)
(save-excursion
(or (re-search-backward "^ *test ['\"]\\(.*?\\)['\"]" nil t)
(re-search-forward "^ *test ['\"]\\(.*?\\)['\"]" nil t))
(let ((test-name (match-string 1)))
(if test-name
(let ((default-directory (minitest-project-root)))
(compile (format "ruby -Itest %s --name='%s'"
(shell-quote-argument (buffer-file-name))
test-name)))
(message "Could not find a test definition near point.")))))
(advice-add 'minitest-verify-single :override #'my-minitest-run-test-at-point))
(use-package web-mode
:ensure t
:mode
(("\\.phtml\\'" . web-mode)
("\\.php\\'" . web-mode)
("\\.tpl\\'" . web-mode)
("\\.[agj]sp\\'" . web-mode)
("\\.as[cp]x\\'" . web-mode)
("\\.erb\\'" . web-mode)
("\\.mustache\\'" . web-mode)
("\\.djhtml\\'" . web-mode))
:custom
(web-mode-markup-indent-offset 2)
(web-mode-css-indent-offset 2)
(web-mode-code-indent-offset 2))
(use-package copilot
:straight (:host github :repo "copilot-emacs/copilot.el" :files ("*.el"))
:ensure t
:bind (:map copilot-completion-map
("<tab>" . 'copilot-accept-completion)
("TAB" . 'copilot-accept-completion)
("C-TAB" . 'copilot-accept-completion-by-word)
("C-<tab>" . 'copilot-accept-completion-by-word)
("C-n" . 'copilot-next-completion)
("C-p" . 'copilot-previous-completion))
:config
(add-to-list 'copilot-indentation-alist '(prog-mode 2))
(add-to-list 'copilot-indentation-alist '(org-mode 2))
(add-to-list 'copilot-indentation-alist '(text-mode 2))
(add-to-list 'copilot-indentation-alist '(closure-mode 2))
(add-to-list 'copilot-indentation-alist '(emacs-lisp-mode 2))
(add-to-list 'copilot-indentation-alist '(enh-ruby 2))
(add-to-list 'copilot-major-mode-alist '("enh-ruby" . "ruby"))
:init
(add-hook 'prog-mode-hook 'copilot-mode))
(use-package all-the-icons
:if (display-graphic-p))
(use-package ligature
:straight t ;; Or use `:ensure t` if you're using straight.el or package.el respectively
:hook (prog-mode . ligature-mode)
:config
;; Enable specific ligatures for programming modes
(ligature-set-ligatures 'prog-mode
'("www" "**" "***" "**/" "*>" "*/" "\\\\" "\\\\\\" "{-" "::"
":::" ":=" "!!" "!=" "!==" "-}" "----" "-->" "->" "-> " "->>"
"-<" "-<<" "-~" "#{" "#[" "##" "###" "####" "#(" "#?" "#_"
"#_(" ".-" ".=" ".." "..<" "..." "?=" "??" ";;" "/*" "/**"
"/=" "/==" "/>" "//" "///" "&&" "||" "||=" "|=" "|>" "^=" "$>"
"++" "+++" "+>" "=:=" "==" "===" "==>" "=>" "=>>" "<="
"=<<" "=/=" ">-" ">=" ">=>" ">>" ">>-" ">>=" ">>>" "<*"
"<*>" "<|" "<|>" "<$" "<$>" "<!--" "<-" "<--" "<->" "<+"
"<+>" "<=" "<==" "<=>" "<=<" "<>" "<<" "<<-" "<<=" "<<<"
"<~" "<~~" "</" "</>" "~@" "~-" "~>" "~~" "~~>" "%%"))
;; Enable globally if needed
(global-ligature-mode t))
(use-package aidermacs
:straight (:host github :repo "MatthewZMD/aidermacs")
:bind (("C-c a" . aidermacs-transient-menu))
:config
(aidermacs-setup-minor-mode)
(setq aidermacs-backend 'vterm)
(setq aidermacs-vterm-multiline-newline-key "S-<return>")
;; Ensure Aidermacs buffers open in the side window
(setq aidermacs-display-buffer-function
(lambda (buffer)
(display-buffer buffer '(display-buffer-reuse-window shackle-display-buffer)))))
(use-package ediff
:ensure nil ;; `ediff` is built-in, so no need to install it
:custom
;; Show diffs side by side instead of stacked
(ediff-split-window-function 'split-window-horizontally)
;; Prevent ediff from making a new frame
(ediff-window-setup-function 'ediff-setup-windows-plain))
;; Treemacs configuration added
(use-package treemacs-projectile
:after (treemacs projectile)
:ensure t)
(use-package treemacs-icons-dired
:hook (dired-mode . treemacs-icons-dired-enable-once)
:ensure t)
(use-package treemacs-magit
:after (treemacs magit)
:ensure t)
;; window management with shackle
(use-package shackle
:ensure t
:config
(setq shackle-select-reused-windows t) ;; Always select the reused window
(setq shackle-rules
'(
;; Buffers that should appear in the right side window
(magit-status-mode :align right :size 0.35 :other t)
(magit-log-mode :align right :size 0.35 :other t)
(magit-diff-mode :align right :size 0.35 :other t)
(magit-process-mode :align right :size 0.35 :other t)
(magit-revision-mode :align right :size 0.35 :other t)
(vterm-mode :align right :size 0.35 :select t :other t)
("COMMIT_EDITMSG" :regexp t :align right :size 0.35 :select t :other t)
("\\*aidermacs.*\\*" :regexp t :align right :size 0.35 :select t :other t)
("\\*Async Shell Command\\*.*" :regexp t :align right :size 0.35 :select t)
("\\*xref\\*" :regexp t :align right :size 0.35 :select t :reuse t)
("\\*Flycheck.*\\*" :regexp t :align right :size 0.35 :select nil :other t)
("\\*Help\\*" :align right :size 0.35 :select t :other t)
("\\*Warnings\\*" :align right :size 0.35 :select t :other t)
("\\*Messages\\*" :align right :size 0.35 :select t :other t)
("\\*Compile-Log\\*" :align right :size 0.35 :select t :other t)
("\\*compilation\\*" :align right :size 0.35 :select t :other t)
("\\*grep\\*" :align right :size 0.35 :select t :other t)
("\\*Completions\\*" :align right :size 0.35 :select nil :other t)
;; Default rule for all other special buffers
('(special-mode help-mode) :align right :size 0.35 :select t :other t)
))
(shackle-mode 1))