Add formatter and some other stuff

This commit is contained in:
Maciej 2023-10-17 15:05:40 +03:00
parent 781b4c3095
commit 697984199a
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
11 changed files with 146 additions and 99 deletions

View file

@ -49,11 +49,11 @@
;; Call LSP-UI hook
(+custom-set-lsp-ui-font-hook))
;; (defvar +custom-font "Iosevka")
(defvar +custom-font "Iosevka")
;; (defvar +custom-font "Input Mono Condensed")
;; (defvar +custom-font "SF Mono")
;; (defvar +custom-font "Monaco")
(defvar +custom-font "JetBrains Mono")
;; (defvar +custom-font "JetBrains Mono")
;; (defvar +custom-font "JuliaMono")
;; (defvar +custom-font "Rec Mono Semicasual")
;; (defvar +custom-font "Victor Mono")

View file

@ -74,9 +74,11 @@
:config (global-column-enforce-mode t))
;; Vim-like regex replace with preview in buffer.
(use-package visual-regexp
:straight t
:defer t)
(use-package visual-regexp :straight t :defer t)
;; Formatter for many files
(use-package apheleia :straight t :defer t)
(provide '+custom-pkg-prog-mode)
;;; prog-mode ends here

View file

@ -8,6 +8,7 @@
(use-package apropospriate-theme :straight t :defer t)
(use-package leuven-theme :straight t :defer t)
(use-package modus-themes :straight t :defer t)
(use-package darktooth-theme :straight t :defer t)
;; Disable cursor blinking
(blink-cursor-mode 0)
@ -24,6 +25,7 @@
(load-theme 'base16-humanoid-light t t)
;; Dark themes
(load-theme 'darktooth t t)
(load-theme 'base16-zenburn t)
(load-theme 'base16-tomorrow-night-eighties t t)
(load-theme 'base16-darcula t t)
@ -41,7 +43,9 @@
"$HOME/.emacs.d/themes/base16-harmonic-light-modified.el")
(spaceline-emacs-theme)
(enable-theme 'base16-harmonic-light-modified)
;; Zenburn with customizations
(enable-theme 'base16-zenburn-modified)
(provide '+custom-pkg-themes)
;;; themes.el ends here