diff options
author | 2024-08-30 17:54:01 -0400 | |
---|---|---|
committer | 2024-08-30 17:54:01 -0400 | |
commit | 63879fc37e2b7e7f4d6069dfc287a85ee758b1f8 (patch) | |
tree | 8451cb5c68db1ce7c548325578a44d1a7a236f4f /.emacs.d | |
parent | dcb96b515fa65eee556df976375692cef48db21d (diff) | |
download | configs-63879fc37e2b7e7f4d6069dfc287a85ee758b1f8.tar.gz configs-63879fc37e2b7e7f4d6069dfc287a85ee758b1f8.tar.xz configs-63879fc37e2b7e7f4d6069dfc287a85ee758b1f8.zip |
Various updates from anahita
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/early-init.el | 4 | ||||
-rw-r--r-- | .emacs.d/init.el | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/.emacs.d/early-init.el b/.emacs.d/early-init.el index 99646b0..962c724 100644 --- a/.emacs.d/early-init.el +++ b/.emacs.d/early-init.el @@ -2,3 +2,7 @@ ;; https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=24acb31c04b4048b85311d794e600ecd7ce60d3b (setq package-enable-at-startup nil) (setq load-prefer-newer t) +(menu-bar-mode -1) +(tool-bar-mode -1) +(scroll-bar-mode -1) +(blink-cursor-mode -1) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index a712bb1..5a9cdd3 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -303,6 +303,9 @@ plain variables. This means that `setopt' will execute any (set-fontset-font t 'arabic "Sahel WOL") (with-eval-after-load 'faces (let ((grey "#e7e7e7")) + (set-face-attribute 'default nil + :font "Source Code Pro" + :weight 'medium) (set-face-attribute 'fixed-pitch nil :font "Source Code Pro" :weight 'medium) @@ -1624,7 +1627,7 @@ non-nil." (global-display-fill-column-indicator-mode 1)) (with-eval-after-load 'window - (setopt split-width-threshold 150)) + (setopt split-width-threshold 140)) (add-hook 'latex-mode-hook #'reftex-mode) |