changed font, removed bloat config, removed dirvish

This commit is contained in:
2024-08-21 10:54:33 -07:00
parent c2fe5c9811
commit 109f484936
3 changed files with 6 additions and 20 deletions

View File

@@ -22,9 +22,9 @@
(setq browse-url-browser-function 'browse-url-generic (setq browse-url-browser-function 'browse-url-generic
browse-url-generic-program "qutebrowser") browse-url-generic-program "qutebrowser")
(set-face-attribute 'default nil :font "Hack" :height 130 :weight 'regular) (set-face-attribute 'default nil :font "Terminus" :height 130 :weight 'regular)
(set-face-attribute 'fixed-pitch nil :font "Hack" :height 1.0 :weight 'regular) (set-face-attribute 'fixed-pitch nil :font "Terminus" :height 1.0 :weight 'regular)
(set-face-attribute 'variable-pitch nil :font "Hack" :height 1.0 :weight 'bold) (set-face-attribute 'variable-pitch nil :font "Terminus" :height 1.0 :weight 'bold)
(defun opal/org-font-setup () (defun opal/org-font-setup ()
;; Replace list hyphen with dot ;; Replace list hyphen with dot
@@ -42,7 +42,7 @@
(org-level-6 . 1.1) (org-level-6 . 1.1)
(org-level-7 . 1.1) (org-level-7 . 1.1)
(org-level-8 . 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 ;; 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) (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 '("py" . "src python"))
(add-to-list 'org-structure-template-alist '("clj" . "src clojure"))) (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")) (setq rmh-elfeed-org-files (list "~/sync/elfeed/feeds.org"))
(add-hook! 'elfeed-search-mode-hook 'elfeed-update) (add-hook! 'elfeed-search-mode-hook 'elfeed-update)
(after! elfeed (after! elfeed
(setq elfeed-search-filter "@1-month-ago +unread")) (setq elfeed-search-filter "@1-month-ago +unread"))
(setq create-lockfiles nil) (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")

View File

@@ -26,7 +26,7 @@
;;hydra ;;hydra
;;indent-guides ; highlighted indent columns ;;indent-guides ; highlighted indent columns
;;ligatures ; ligatures and symbols to make your code pretty again ;;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 modeline ; snazzy, Atom-inspired modeline, plus API
;;nav-flash ; blink cursor line after big motions ;;nav-flash ; blink cursor line after big motions
;;neotree ; a project drawer, like NERDTree for vim ;;neotree ; a project drawer, like NERDTree for vim

View File

@@ -3,4 +3,4 @@
(package! org-make-toc) (package! org-make-toc)
(package! modus-themes) (package! modus-themes)
(package! ef-themes) (package! ef-themes)
(package! python-black) (package! dirvish :disable t)