diff options
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 30 |
1 files changed, 29 insertions, 1 deletions
@@ -147,13 +147,41 @@ | |||
147 | ;; look at Emacs. | 147 | ;; look at Emacs. |
148 | ;; --------------------------------- | 148 | ;; --------------------------------- |
149 | 149 | ||
150 | ;; Jazz Theme | ||
150 | (use-package jazz-theme | 151 | (use-package jazz-theme |
151 | :straight t) | 152 | :straight t) |
152 | |||
153 | (load-theme 'jazz t) | 153 | (load-theme 'jazz t) |
154 | 154 | ||
155 | ;; Background color | ||
155 | (set-background-color "black") | 156 | (set-background-color "black") |
156 | 157 | ||
158 | ;; Cursor | ||
159 | (setq cursor-type 'box) | ||
160 | (set-cursor-color "grey13") | ||
161 | |||
162 | ;; Highlights | ||
163 | (set-face-attribute 'highlight nil :background "#333") | ||
164 | |||
165 | ;; Selection | ||
166 | (set-face-attribute 'region nil | ||
167 | :background "#222" | ||
168 | :foreground nil) | ||
169 | |||
170 | ;; Comments | ||
171 | (set-face-attribute 'font-lock-comment-face nil :foreground "#222") | ||
172 | |||
173 | ;; Different face for delimiters | ||
174 | (use-package paren-face | ||
175 | :straight t | ||
176 | :config | ||
177 | (set-face-attribute 'parenthesis nil :foreground "#222")) | ||
178 | (add-hook 'after-init-hook 'global-paren-face-mode) | ||
179 | |||
180 | ;; Highlight color codes as their respective color | ||
181 | (use-package rainbow-mode | ||
182 | :straight t | ||
183 | :hook (prog-mode . rainbow-mode)) | ||
184 | |||
157 | 185 | ||
158 | ;; --------------------------------- | 186 | ;; --------------------------------- |
159 | ;; Fonts | 187 | ;; Fonts |