diff options
author | 2021-10-17 15:36:51 -0400 | |
---|---|---|
committer | 2021-10-17 15:36:51 -0400 | |
commit | 52b7a57ab5dea7e6f05be7d20f5a8918988f5a6f (patch) | |
tree | 512f7be08b3f9a9020d9d131a5b81381b4caf90f /.emacs.d | |
parent | 8ab693f86a241e0531b22e04132290267a54e1ea (diff) | |
download | configs-52b7a57ab5dea7e6f05be7d20f5a8918988f5a6f.tar.gz configs-52b7a57ab5dea7e6f05be7d20f5a8918988f5a6f.tar.xz configs-52b7a57ab5dea7e6f05be7d20f5a8918988f5a6f.zip |
several uncommitted changes
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/etc/eshell/aliases | 2 | ||||
-rw-r--r-- | .emacs.d/init.el | 18 | ||||
-rw-r--r-- | .emacs.d/lisp/bandali-gnus.el | 1 |
3 files changed, 15 insertions, 6 deletions
diff --git a/.emacs.d/etc/eshell/aliases b/.emacs.d/etc/eshell/aliases index c13a88c..203b616 100644 --- a/.emacs.d/etc/eshell/aliases +++ b/.emacs.d/etc/eshell/aliases @@ -17,4 +17,4 @@ alias vi find-file $1 alias vim find-file $1 alias mbsync mbsync -c $XDG_CONFIG_HOME/isync/mbsyncrc $* alias getmail getmail --getmaildir $XDG_CONFIG_HOME/getmail --rcfile getmailrc $* -alias m mbsync sfl; mbsync csclub; mbsync uwaterloo; mbsync shemshak; mbsync gnub; getmail +alias m mbsync csclub; mbsync uwaterloo; mbsync shemshak; mbsync gnub; getmail diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 781b7f0..251319a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -220,6 +220,7 @@ This sets each user option VAR's value to the corresponding VALUE. ;;;; C-level customizations (csetq + ;; line-spacing 3 ;; completion case sensitivity completion-ignore-case t read-buffer-completion-ignore-case t @@ -246,7 +247,11 @@ This sets each user option VAR's value to the corresponding VALUE. indent-tabs-mode nil tab-width 4) -(set-fontset-font t 'arabic "Vazir") +(when (display-graphic-p) + (set-fontset-font t 'arabic "Vazir")) +;; ;; (set-frame-font "Drafting Mono-14:weight=light" nil t) +;; (set-frame-font "Drafting Mono:pixelsize=16" nil t) +;; (set-face-attribute 'bold nil :weight 'semi-bold) ;;;; Elisp-level customizations @@ -450,11 +455,14 @@ This sets each user option VAR's value to the corresponding VALUE. (when (display-graphic-p) (with-eval-after-load 'faces (let* ((grey "#e7e7e7") - (darker-grey "#d9d9d9") - (box ;; 'unspecified - `(:line-width -1 :style released-button))) + ;; (darker-grey "#d9d9d9") + ;; (box ;; 'unspecified + ;; `(;; :line-width -1 + ;; :style released-button)) + ) (set-face-attribute 'mode-line nil - :background grey :box box) + :background grey ;; :box box + ) ;; (set-face-attribute 'mode-line-inactive nil ;; :background darker-grey :box box) ))) diff --git a/.emacs.d/lisp/bandali-gnus.el b/.emacs.d/lisp/bandali-gnus.el index 5007abd..a7fa68d 100644 --- a/.emacs.d/lisp/bandali-gnus.el +++ b/.emacs.d/lisp/bandali-gnus.el @@ -163,6 +163,7 @@ (gcc-self . t))) ;; nnimap-record-commands t ;; gnus-large-newsgroup 50 + ;; gnus-process-mark-toggle t gnus-home-directory (b/var "gnus/") gnus-directory (concat gnus-home-directory "news/") message-directory (concat gnus-home-directory "mail/") |