;;; init.el --- bandali's emacs configuration -*- lexical-binding: t -*-
-;; Copyright (C) 2018-2020 Amin Bandali <bandali@gnu.org>
+;; Copyright (C) 2018-2021 Amin Bandali <bandali@gnu.org>
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;;; Commentary:
-;; GNU Emacs configuration of Amin Bandali, computer scientist,
-;; Free Software activist, and GNU maintainer & webmaster. Packages
-;; are installed through using Borg for a fully reproducible setup.
+;; GNU Emacs configuration of bandali, free software activist,
+;; computing scientist, and GNU maintainer and volunteer.
;; Over the years, I've taken inspiration from configurations of many
;; great people. Some that I can remember off the top of my head are:
(format
"[%s]" (number-to-string
exwm-workspace-current-index))))))))
-
- ;; make some mode-line spaces smaller
- (setq-default
- mode-line-format
- (mapcar
- (lambda (x)
- (if (and (stringp x) (or (string= x " ") (string= x " ")))
- " "
- x))
- mode-line-format)
- mode-line-buffer-identification
- (propertized-buffer-identification "%10b")))
+ (when (version< emacs-version "28")
+ ;; manually make some mode-line spaces smaller
+ ;; (version<= "28" emacs-version) can do an awesome job at this
+ ;; out of the box if `mode-line-compact' is set to t (see below)
+ (setq-default
+ mode-line-format
+ (mapcar
+ (lambda (x)
+ (if (and (stringp x)
+ (or (string= x " ")
+ (string= x " ")))
+ " "
+ x))
+ mode-line-format)
+ mode-line-buffer-identification
+ (propertized-buffer-identification "%10b"))))
(add-hook 'after-init-hook #'b/post-init)
;; increase number of lines kept in *Messages* log
(setq message-log-max 20000)
-;; optionally, uncomment to supress some byte-compiler warnings
-;; (see C-h v byte-compile-warnings RET for more info)
-;; (setq byte-compile-warnings
-;; '(not free-vars unresolved noruntime lexical make-local))
-
\f
;;; whoami
("org" . "https://orgmode.org/elpa/"))
package-load-list
'(;; GNU ELPA
- (ivy "0.13.1")
- (counsel "0.13.1")
- (swiper "0.13.1")
(debbugs "0.26")
(delight "1.7")
- (ebdb "0.6.19")
(orgalist "1.13")
(rt-liberation "1.31")
(yasnippet "0.14.0")
(expand-region "0.11.0")
+ (emms "6.2")
;; bndl
- (refinery-theme "0.1.1")
+ ;; (refinery-theme "0.1.1")
;; Org ELPA
- (org-plus-contrib "20201005"))))
+ (org-plus-contrib "20201109"))))
(package-initialize))
(csetq package-archive-upload-base "/ssh:caffeine:~/www/p/elpa")
;;;; C-level customizations
(csetq
+ ;; completion case sensitivity
+ completion-ignore-case t
;; minibuffer
enable-recursive-minibuffers t
resize-mini-windows t
- ;; more useful frame titles
- ;; frame-title-format '("" invocation-name " - "
- ;; (:eval
- ;; (if (buffer-file-name)
- ;; (abbreviate-file-name (buffer-file-name))
- ;; "%b")))
- ;; i don't feel like jumping out of my chair every now and again; so
- ;; don't BEEP! at me, emacs
+ ;; mode-line
+ mode-line-compact t
+ ;; i don't feel like jumping out of my chair every now and again;
+ ;; so...don't *BEEP* at me, emacs =)
ring-bell-function 'ignore
;; better scrolling
- ;; scroll-margin 1
- ;; scroll-conservatively 10000
- scroll-step 1
- scroll-conservatively 101
- scroll-preserve-screen-position 1
+ ;; scroll-conservatively 101
+ scroll-conservatively 15
+ ;; scroll-preserve-screen-position 1
;; focus follows mouse
- mouse-autoselect-window t)
+ ;; mouse-autoselect-window t
+ )
(setq-default
- ;; always use space for indentation
- indent-tabs-mode nil
- tab-width 4
;; case-sensitive search (and `dabbrev-expand')
;; case-fold-search nil
- ;; cursor shape
- cursor-type t)
+ ;; always use space for indentation
+ indent-tabs-mode nil
+ tab-width 4)
(set-fontset-font t 'arabic "Vazir")
-;; unicode support
-;; (dolist (ft (fontset-list))
-;; (set-fontset-font
-;; ft
-;; 'unicode
-;; (font-spec :name "Source Code Pro" :size 14))
-;; (set-fontset-font
-;; ft
-;; 'unicode
-;; (font-spec :name "DejaVu Sans Mono")
-;; nil
-;; 'append)
-;; ;; (set-fontset-font
-;; ;; ft
-;; ;; 'unicode
-;; ;; (font-spec
-;; ;; :name "Symbola monospacified for DejaVu Sans Mono")
-;; ;; nil
-;; ;; 'append)
-;; ;; (set-fontset-font
-;; ;; ft
-;; ;; #x2115 ; ℕ
-;; ;; (font-spec :name "DejaVu Sans Mono")
-;; ;; nil
-;; ;; 'append)
-;; (set-fontset-font
-;; ft
-;; (cons ?Α ?ω)
-;; (font-spec :name "DejaVu Sans Mono" :size 14)
-;; nil
-;; 'prepend))
-
;;;; Elisp-level customizations
+;; (define-key minibuffer-local-completion-map
+;; "\t" #'minibuffer-force-complete)
+
+;; (with-eval-after-load 'icomplete
+
+;; (setq icomplete-on-del-error-function #'abort-recursive-edit)
+
+;; (defun b/icomplete-fido-backward-updir ()
+;; "Delete char before or go up directory, like `ido-mode'."
+;; (interactive)
+;; (if (and (eq (char-before) ?/)
+;; (eq (icomplete--category) 'file))
+;; (save-excursion
+;; (goto-char (1- (point)))
+;; (when (search-backward "/" (point-min) t)
+;; (delete-region (1+ (point)) (point-max))))
+;; (condition-case nil
+;; (call-interactively #'delete-backward-char)
+;; (error
+;; (when icomplete-on-del-error-function
+;; (funcall icomplete-on-del-error-function))))))
+
+;; (define-key icomplete-fido-mode-map
+;; (kbd "DEL") #'b/icomplete-fido-backward-updir))
+
+;; (with-eval-after-load 'subr
+;; (keyboard-translate ?\( ?\[)
+;; (keyboard-translate ?\) ?\])
+;; (keyboard-translate ?\[ ?\()
+;; (keyboard-translate ?\] ?\))
+
+;; ;; (keyboard-translate ?\( ?\()
+;; ;; (keyboard-translate ?\) ?\))
+;; ;; (keyboard-translate ?\[ ?\[)
+;; ;; (keyboard-translate ?\] ?\])
+;; )
+
;; startup
;; don't need to see the startup echo area message
(advice-add #'display-startup-echo-area-message :override #'ignore)
;; auto-save
auto-save-file-name-transforms `((".*" ,(b/var "auto-save/") t))
;; insert newline at the end of files
- require-final-newline t
+ ;; require-final-newline t
;; open read-only file buffers in view-mode
;; (enables niceties like `q' for quit)
view-read-only t)
(global-auto-revert-mode 1)
;; time and battery in mode-line
-(csetq
- display-time-default-load-average nil
- display-time-format " %a %b %-e %-l:%M%P"
- display-time-mail-icon '(image :type xpm
- :file "gnus/gnus-pointer.xpm"
- :ascent center)
- display-time-use-mail-icon t)
-(require 'time)
-(display-time-mode)
-
-(csetq battery-mode-line-format " %p%% %t")
-(require 'battery)
-(display-battery-mode)
-
-(require 'fringe)
-;; smaller fringe
-;; (fringe-mode '(3 . 1))
-(fringe-mode nil)
+(run-with-idle-timer 0.1 nil #'require 'time)
+(with-eval-after-load 'time
+ (csetq
+ display-time-default-load-average nil
+ display-time-format " %a %b %-e %-l:%M%P"
+ display-time-mail-icon '(image :type xpm
+ :file "gnus/gnus-pointer.xpm"
+ :ascent center)
+ display-time-use-mail-icon t)
+ (display-time-mode))
+
+(run-with-idle-timer 0.1 nil #'require 'battery)
+(with-eval-after-load 'battery
+ (csetq battery-mode-line-format " %p%% %t")
+ (display-battery-mode))
+
+;; (with-eval-after-load 'fringe
+;; ;; smaller fringe
+;; (fringe-mode '(3 . 1)))
-(require 'winner)
;; enable winner-mode (C-h f winner-mode RET)
+(require 'winner)
(winner-mode 1)
(with-eval-after-load 'compile
(csetq
;; allow scrolling in Isearch
isearch-allow-scroll t
+ isearch-lazy-count t
;; search for non-ASCII characters: i’d like non-ASCII characters such
;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
;; counterpart. shoutout to
auth-sources '("~/.authinfo.gpg")
authinfo-hidden (regexp-opt '("password" "client-secret" "token")))
+;; info
+(with-eval-after-load 'info
+ (add-to-list
+ 'Info-directory-list
+ (expand-file-name
+ (convert-standard-filename "info/") source-directory)))
+
+;; faces
+(when (display-graphic-p)
+ (with-eval-after-load 'faces
+ (let* ((grey "#e7e7e7")
+ (darker-grey "#d9d9d9")
+ (box ;; `(:line-width -1 :style released-button)
+ 'unspecified))
+ (set-face-attribute 'mode-line nil
+ :background grey :box box)
+ (set-face-attribute 'mode-line-inactive nil
+ :background darker-grey :box box))))
+
\f
;;; Useful utilities
(global-set-key (kbd "C-a") #'b/move-indentation-or-beginning-of-line)
(global-set-key (kbd "C-c a i") #'ielm)
(global-set-key (kbd "C-c d") #'b/duplicate-line-or-region)
+(global-set-key (kbd "C-c j") #'b/join-line-top)
(global-set-key (kbd "C-S-j") #'b/join-line-top)
(global-set-key (kbd "C-c x") #'execute-extended-command)
;; evaling and macro-expanding
(global-set-key (kbd "C-c e b") #'eval-buffer)
(global-set-key (kbd "C-c e e") #'eval-last-sexp)
-(global-set-key (kbd "C-c e p") #'pp-macroexpand-last-sexp)
+(global-set-key (kbd "C-c e m") #'pp-macroexpand-last-sexp)
(global-set-key (kbd "C-c e r") #'eval-region)
;; emacs things
(global-set-key (kbd "C-c F d") #'delete-frame)
;; help/describe
-(global-set-key (kbd "C-S-h C") #'describe-char)
(global-set-key (kbd "C-S-h F") #'describe-face)
;; (global-set-key (kbd "C-x k") #'b/kill-current-buffer)
;; (global-set-key (kbd "C-x K") #'kill-buffer)
-;; (global-set-key (kbd "C-x s") #'save-buffer)
-;; (global-set-key (kbd "C-x S") #'save-some-buffers)
-(define-key emacs-lisp-mode-map (kbd "<C-return>") #'b/add-elisp-section)
+(define-key emacs-lisp-mode-map (kbd "C-<return>") #'b/add-elisp-section)
(when (display-graphic-p)
(global-unset-key (kbd "C-z")))
(require 'bandali-org)
-(require 'bandali-theme)
-
-;; (require 'bandali-magit)
+;; (require 'bandali-theme)
;; recently opened files
(csetq recentf-max-saved-items 2000
(run-with-idle-timer 0.2 nil #'require 'recentf)
(with-eval-after-load 'recentf
;; (add-to-list 'recentf-keep #'file-remote-p)
- (recentf-mode))
-
-;; needed for history for counsel
-(csetq amx-save-file (b/var "amx-save.el"))
-(add-to-list 'load-path (b/lisp "s"))
-(add-to-list 'load-path (b/lisp "amx"))
-(run-with-idle-timer 0.3 nil #'require 'amx)
-(with-eval-after-load 'amx
- (amx-mode))
+ (recentf-mode)
-(require 'bandali-ivy)
+ (defun b/recentf-open ()
+ "Use `completing-read' to \\[find-file] a recent file."
+ (interactive)
+ (find-file
+ (completing-read "Find recent file: " recentf-list)))
+ (global-set-key (kbd "C-c f r") #'b/recentf-open))
+
+(fido-mode 1)
+(defun b/icomplete--fido-mode-setup ()
+ "Customizations to `fido-mode''s minibuffer."
+ (when (and icomplete-mode (icomplete-simple-completing-p))
+ (setq-local
+ ;; icomplete-compute-delay 0.1
+ ;; icomplete-hide-common-prefix t
+ icomplete-separator " · "
+ completion-styles '(basic substring partial-completion flex))))
+(add-hook 'minibuffer-setup-hook #'b/icomplete--fido-mode-setup 1)
(require 'bandali-eshell)
(csetq shr-max-width 80)
-;; Email (with Gnus, message, and EBDB)
+;; Email (with Gnus and message)
(require 'bandali-gnus)
-(with-eval-after-load 'sendmail
- (csetq sendmail-program (executable-find "msmtp")
- ;; message-sendmail-extra-arguments '("-v" "-d")
- mail-specify-envelope-from t
- mail-envelope-from 'header))
(require 'bandali-message)
-(require 'bandali-ebdb)
;; IRC (with ERC)
(require 'bandali-erc)
;; yanking (pasting) what I'd originally intended to.
save-interprogram-paste-before-kill t)
(with-eval-after-load 'simple
- (column-number-mode 1))
+ (column-number-mode 1)
+ (line-number-mode 1))
;; save minibuffer history
(require 'savehist)
;; highlight TODOs in buffers
(global-hl-todo-mode))
-(add-to-list 'load-path (b/lisp "page-break-lines"))
-(run-with-idle-timer 0.5 nil #'require 'page-break-lines)
-(with-eval-after-load 'page-break-lines
- (csetq page-break-lines-max-width fill-column)
- (global-page-break-lines-mode))
-
;; expand-region
(global-set-key (kbd "C-=") #'er/expand-region)
(defconst yas-verbosity-cur yas-verbosity)
(setq yas-verbosity 2)
(csetq yas-snippet-dirs `(,(b/etc "yasnippet/snippets")))
- (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
+ ;; (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
(yas-reload-all)
(setq yas-verbosity yas-verbosity-cur)
(setq debbugs-gnu-current-suppress t)
(debbugs-gnu debbugs-gnu-default-severities
'("gnuzilla"))))
-(global-set-key (kbd "C-c D G b") ; bug-guix
- (lambda ()
- (interactive)
- (setq debbugs-gnu-current-suppress t)
- (debbugs-gnu debbugs-gnu-default-severities
- '("guix"))))
-(global-set-key (kbd "C-c D G p") ; guix-patches
- (lambda ()
- (interactive)
- (setq debbugs-gnu-current-suppress t)
- (debbugs-gnu debbugs-gnu-default-severities
- '("guix-patches"))))
;; url and url-cache
(csetq
(other-window 1)))
(global-set-key (kbd "C-c w q") #'quit-window)
-(run-with-idle-timer 0.6 nil #'require 'windmove)
-(global-set-key (kbd "C-c w h") #'windmove-left)
-(global-set-key (kbd "C-c w j") #'windmove-down)
-(global-set-key (kbd "C-c w k") #'windmove-up)
-(global-set-key (kbd "C-c w l") #'windmove-right)
-(global-set-key (kbd "C-c w H") #'windmove-swap-states-left)
-(global-set-key (kbd "C-c w J") #'windmove-swap-states-down)
-(global-set-key (kbd "C-c w K") #'windmove-swap-states-up)
-(global-set-key (kbd "C-c w L") #'windmove-swap-states-right)
-
;; pass
;; (global-set-key (kbd "C-c a p") #'pass)
;; (add-hook 'pass-mode-hook #'View-exit)
(add-hook 'latex-mode-hook #'reftex-mode)
;; dmenu
-;; (csetq
-;; dmenu-prompt-string "run: "
-;; dmenu-save-file (b/var "dmenu-items"))
+(add-to-list 'load-path (b/lisp "dmenu"))
+(with-eval-after-load 'dmenu
+ (csetq dmenu-prompt-string "run: "
+ dmenu-save-file (b/var "dmenu-items")))
+(autoload 'dmenu "dmenu" nil t)
;; eosd ?
(with-eval-after-load 'delight
(delight 'auto-fill-function " f" "simple")
(delight 'abbrev-mode "" "abbrev")
- (delight 'page-break-lines-mode "" "page-break-lines")
- (delight 'ivy-mode "" "ivy")
- (delight 'counsel-mode "" "counsel")
(delight 'mml-mode " mml" "mml")
(delight 'yas-minor-mode "" "yasnippet"))