From 109f48493674a3d2aaca4ccccb4154fa5b15b7dc Mon Sep 17 00:00:00 2001 From: Ryan Orlando Date: Wed, 21 Aug 2024 10:54:33 -0700 Subject: [PATCH] changed font, removed bloat config, removed dirvish --- .config/doom/config.el | 22 ++++------------------ .config/doom/init.el | 2 +- .config/doom/packages.el | 2 +- 3 files changed, 6 insertions(+), 20 deletions(-) diff --git a/.config/doom/config.el b/.config/doom/config.el index 896ebb5..eb44310 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -22,9 +22,9 @@ (setq browse-url-browser-function 'browse-url-generic browse-url-generic-program "qutebrowser") -(set-face-attribute 'default nil :font "Hack" :height 130 :weight 'regular) -(set-face-attribute 'fixed-pitch nil :font "Hack" :height 1.0 :weight 'regular) -(set-face-attribute 'variable-pitch nil :font "Hack" :height 1.0 :weight 'bold) +(set-face-attribute 'default nil :font "Terminus" :height 130 :weight 'regular) +(set-face-attribute 'fixed-pitch nil :font "Terminus" :height 1.0 :weight 'regular) +(set-face-attribute 'variable-pitch nil :font "Terminus" :height 1.0 :weight 'bold) (defun opal/org-font-setup () ;; Replace list hyphen with dot @@ -42,7 +42,7 @@ (org-level-6 . 1.1) (org-level-7 . 1.1) (org-level-8 . 1.1))) - (set-face-attribute (car face) nil :font "Hack" :weight 'regular :height (cdr face))) + (set-face-attribute (car face) nil :font "Terminus" :weight 'regular :height (cdr face))) ;; Ensure that anything that should be fixed-pitch in Org files appears that way (set-face-attribute 'org-block nil :foreground nil :inherit 'fixed-pitch) @@ -167,23 +167,9 @@ (add-to-list 'org-structure-template-alist '("py" . "src python")) (add-to-list 'org-structure-template-alist '("clj" . "src clojure"))) -(use-package vterm - :commands vterm - :config - (setq vterm-shell "bash") - (setq vterm-tramp-shells '("ssh" "/bin/bash"))) - (setq rmh-elfeed-org-files (list "~/sync/elfeed/feeds.org")) (add-hook! 'elfeed-search-mode-hook 'elfeed-update) (after! elfeed (setq elfeed-search-filter "@1-month-ago +unread")) (setq create-lockfiles nil) - -(use-package! python-black - :demand t - :after python - :config - (add-hook! 'python-mode-hook #'python-black-on-save-mode)) - -(setq flycheck-python-pylint-executable "pylint") diff --git a/.config/doom/init.el b/.config/doom/init.el index df73b25..cda150f 100644 --- a/.config/doom/init.el +++ b/.config/doom/init.el @@ -26,7 +26,7 @@ ;;hydra ;;indent-guides ; highlighted indent columns ;;ligatures ; ligatures and symbols to make your code pretty again - minimap ; show a map of the code on the side + ;;minimap ; show a map of the code on the side modeline ; snazzy, Atom-inspired modeline, plus API ;;nav-flash ; blink cursor line after big motions ;;neotree ; a project drawer, like NERDTree for vim diff --git a/.config/doom/packages.el b/.config/doom/packages.el index cf83a3f..855d7ab 100644 --- a/.config/doom/packages.el +++ b/.config/doom/packages.el @@ -3,4 +3,4 @@ (package! org-make-toc) (package! modus-themes) (package! ef-themes) -(package! python-black) +(package! dirvish :disable t)