-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
167 lines (141 loc) · 4.08 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
;;; init.el --- Emacs init script -*- lexical-binding: t -*-
;;; Commentary:
;;; This file loads when Emacs first boots up
;;; Code:
;; Enable MELPA packages
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
;; =====================================
;; == Quality of life improvements... ==
;; =====================================
;; Maximized on startup
(add-to-list 'default-frame-alist '(fullscreen . maximized))
;; Font
;; NOTE: add `:font "Fira Code"` or similar to change font
(set-face-attribute 'default t :height 100)
;; Disable menu and toolbars
(tool-bar-mode -1)
(menu-bar-mode -1)
(scroll-bar-mode -1)
(blink-cursor-mode -1)
(setq visible-bell t)
;; Theme
(use-package catppuccin-theme
:ensure t)
(load-theme 'catppuccin :no-confirm)
(setq catppuccin-flavor 'macchiato)
(catppuccin-reload)
;; Modeline
;; (NOTE: run `M-x nerd-icons-install-fonts')
(use-package doom-modeline
:ensure t
:init (doom-modeline-mode 1))
;; Parens completion (Emacs native)
(electric-pair-mode 1)
;; Enable line numbers for all prog/text modes
(defun enable-line-numbers ()
"Enable line numbers in a major mode."
(display-line-numbers-mode t))
(add-hook 'prog-mode-hook #'enable-line-numbers)
;; Set exec-path from shell PATH
(use-package exec-path-from-shell
:ensure t
:config
(when (memq window-system '(mac ns x))
(exec-path-from-shell-initialize)))
;; Git integration
(use-package magit
:ensure t
:init
(message "Loading Magit!")
:config
(message "Loaded Magit!")
:bind (("C-x g" . magit-status)
("C-x C-g" . magit-status)))
;; M-x VS Code
;; (Use autocompletion in all programming modes, set LSP keybindings)
(use-package company
:ensure t
:hook (prog-mode . company-mode)
:config
(setq company-idle-delay 0.1
company-minimum-prefix-length 1))
(use-package eglot
:bind (:map eglot-mode-map
("C-c d" . eldoc)
("C-c a" . eglot-code-actions)
("C-c r" . eglot-rename)))
;; Which key does what again?
(use-package which-key
:ensure t
:config
(which-key-mode))
;; Syntax checking
(use-package flycheck
:ensure t
:init (global-flycheck-mode))
;; =====================
;; == EVIL Config >:3 ==
;; =====================
(use-package evil
:ensure t
:init
(setq evil-want-integration t) ;; This is optional since it's already set to t by default.
(setq evil-want-keybinding nil)
:config
(evil-mode 1))
(use-package evil-collection
:after evil
:ensure t
:config
(evil-collection-init))
;; ===============
;; == Languages ==
;; ===============
;; NOTE: use M-x treesit-install-language-grammar for new languages
;; C
(use-package c-ts-mode
:hook ((c-ts-mode . eglot-ensure))
:mode (("\\.c\\'" . c-ts-mode))
:bind (:map c-ts-mode-map
("<f5>" . recompile)
("<f6>" . eglot-format)))
;; Rust
(use-package rust-ts-mode
:hook ((rust-ts-mode . eglot-ensure))
:mode (("\\.rs\\'" . rust-ts-mode)))
;; Python
(use-package python-ts-mode
:hook ((python-ts-mode . eglot-ensure))
:mode (("\\.py\\'" . python-ts-mode))
:interpreter ("ipython" . python-ts-mode))
(use-package conda
:ensure t
:config
(setq-default conda-env-home-directory
(expand-file-name "~/miniforge3")))
;; Scheme
(use-package geiser-guile :ensure t)
(use-package geiser-chicken :ensure t)
(use-package geiser-mit :ensure t)
(use-package geiser-chez :ensure t)
(use-package geiser-racket :ensure t)
;; ======================
;; == No touch zone ;3 ==
;; ======================
(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.
'(package-selected-packages
'(conda magit flycheck evil which-key catppuccin-theme company)))
(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.
)
(provide 'init)
;;; init.el ends here