X-Git-Url: https://git.shemshak.org/~bandali/configs/blobdiff_plain/29e42dc1fd04beeec0ffda85c2b534c94168c0df..526dc1d93664062cfdb0e55bd6623d9dc7993471:/.emacs.d/init.el diff --git a/.emacs.d/init.el b/.emacs.d/init.el index bcb3a3b..007cf6f 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -473,8 +473,6 @@ For disabling the behaviour for certain buffers and/or modes." ("C-c F d" . delete-frame) ("C-c F D" . server-edit) - ("C-c o" . other-window) - ("C-S-h C" . describe-char) ("C-S-h F" . describe-face) @@ -484,6 +482,9 @@ For disabling the behaviour for certain buffers and/or modes." ("s-p" . beginning-of-buffer) ("s-n" . end-of-buffer) + ("M-o" . other-window) + ("M-O" . facemenu-keymap) + :map emacs-lisp-mode-map ("" . a/add-elisp-section)) @@ -657,8 +658,8 @@ For disabling the behaviour for certain buffers and/or modes." (use-feature recentf :defer 0.2 :config - (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:") - (setq recentf-max-saved-items 40)) + ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:") + (setq recentf-max-saved-items 2000)) ;; smart M-x enhancement (needed by counsel for history) (use-package smex) @@ -1222,7 +1223,8 @@ For disabling the behaviour for certain buffers and/or modes." :commands (sml/apply-theme) :demand :config - (sml/setup)) + (sml/setup) + (smart-mode-line-enable)) (use-package doom-themes) @@ -1336,10 +1338,22 @@ For disabling the behaviour for certain buffers and/or modes." ("" . mwim-end-of-line-or-code))) (use-package projectile + :defer 0.5 :bind-keymap ("C-c P" . projectile-command-map) :config (projectile-mode) + (defun a/projectile-mode-line-fun () + "Report project name and type in the modeline." + (let ((project-name (projectile-project-name)) + (project-type (projectile-project-type))) + (format "%s%s" + projectile-mode-line-prefix + (if project-type + (format ":%s" project-type) + "")))) + (setq projectile-mode-line-function 'a/projectile-mode-line-fun) + (defun my-projectile-invalidate-cache (&rest _args) ;; ignore the args to `magit-checkout' (projectile-invalidate-cache nil)) @@ -1646,6 +1660,7 @@ For disabling the behaviour for certain buffers and/or modes." (list ".*guile-devel.gnu.org" "l.gnu.guile.devel") (list ".*guile-user.gnu.org" "l.gnu.guile.user") (list ".*guix-devel.gnu.org" "l.gnu.guix.devel") + (list ".*help-guix.gnu.org" "l.gnu.guix.help") (list ".*info-guix.gnu.org" "l.gnu.guix.info") (list ".*savannah-hackers-public.gnu.org" "l.gnu.savannah.hackers.public") (list ".*savannah-users.gnu.org" "l.gnu.savannah.users") @@ -1742,6 +1757,9 @@ For disabling the behaviour for certain buffers and/or modes." ("l\\.gnu\\.guix\\.devel" (to-address . "guix-devel@gnu.org") (to-list . "guix-devel@gnu.org")) + ("l\\.gnu\\.guix\\.help" + (to-address . "help-guix@gnu.org") + (to-list . "help-guix@gnu.org")) ("l\\.gnu\\.guix\\.info" (to-address . "info-guix@gnu.org") (to-list . "info-guix@gnu.org")) @@ -1877,7 +1895,7 @@ https://csclub.uwaterloo.ca/~abandali/") (eval (set (make-local-variable 'message-user-fqdn) "fencepost.gnu.org"))) ((header "subject" "ThankCRM") (to "webmasters-comment@gnu.org") - (body "Added to 2019supporters.html.\n\nMoving to campaigns.\n") + (body "") (eval (setq a/message-cite-say-hi nil))) ("nnimap\\+uw:.*" (address "abandali@uwaterloo.ca") @@ -2111,6 +2129,7 @@ https://csclub.uwaterloo.ca/~abandali/") (use-feature erc-track :after erc :custom + (erc-track-enable-keybindings nil) (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT" "324" "329" "332" "333" "353" "477")) (erc-track-priority-faces-only 'all)