;;; init.el --- My configurations for GNU Emacs -*- lexical-binding: t; -*- ;; 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 ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . ;;; Commentary: ;; ;;; Code: ;; Garbage collection threshold maneuvre (setq gc-cons-threshold (* 512 1024 1024)) ;;; Tell me the start time at start-up ;;;###autoload (defun message-start-time () "Tell me the start time at start-up." (interactive) (message "%s" (emacs-init-time))) (add-hook 'emacs-startup-hook #'message-start-time) ;;; Macro to conveniently load files ;;;###autoload (defvar load-file-directory (cond ((stringp load-file-name) (file-name-directory load-file-name)) (t default-directory)) "The directory to load files.") ;; If this is a `defmacro', then the start time will be very long... ;;;###autoload (defsubst load-config (file-name) "Conviently load configuration file FILE-NAME in the same \ directory as `load-file-directory'." (load-file (expand-file-name file-name load-file-directory))) ;;;###autoload (defun load-config-later (file-name seconds) "Load FILE-NAME SECONDS later." (run-with-idle-timer seconds nil (lambda () (load-config file-name)))) ;;;###autoload (defmacro prepare-in-hook-once (entry-name hook file) "Define a function called ENTRY-NAME to load FILE in HOOK once." `(progn (defun ,entry-name () (interactive) (remove-hook ',hook ',entry-name) (load-config ,file)) (add-hook ',hook ',entry-name))) ;;;###autoload (defmacro load-after-function (function-name file-path doc redefine-p &rest def) "Load FILE-PATH after FUNCTION-NAME. After loading, execute DEF. Finally if REDEFINE-P is non-nil, then FUNCTION-NAME will be defined as DEF after loading. If FUNCTION-NAME is already a valid function, this advices the function instead of redefining the function, and REDEFINE-P has no effect." (cond ((fboundp function-name) `(let ((advice-symbol (intern (format "%s-advice" (symbol-name ',function-name))))) (defalias advice-symbol (lambda (&rest _args) ,(format "Advice for %s.\nThis is generated by `load-after-function'." function-name) (advice-remove ',function-name advice-symbol) (load-file (expand-file-name ,file-path load-file-directory)) ,@def)) (advice-add ',function-name :after advice-symbol))) (`(defun ,function-name () ,doc (interactive) (load-file (expand-file-name ,file-path load-file-directory)) ,@def ,(cond (redefine-p `(defun ,function-name () ,doc (interactive) ,@def))))))) (load-config "common.el") (load-config "basic.el") (load-config "backup-conf.el") (load-config "recentf-conf.el") (load-config "dashboard.el") (load-config "theme.el") (load-config "modeline.el") (add-hook 'emacs-lisp-mode-hook (lambda () (set 'mode-name "ELisp"))) (prepare-in-hook-once prepare-elisp emacs-lisp-mode-hook "elisp.el") (prepare-in-hook-once prepare-org org-mode-hook "org-conf.el") (add-hook 'org-mode-hook #'prepare-org) (define-key global-map (vector 3 97) #'prepare-org) (define-key global-map (vector 3 99) #'prepare-org) (define-key global-map (vector 3 ?l) #'prepare-org) ;;;###autoload (load-after-function durand-mu4e "mail.el" "Open mu4e." t (mu4e)) (add-to-list 'auto-mode-alist (cons "pdf$" #'pdf-view-mode)) ;;;###autoload (load-after-function pdf-view-mode "pdf.el" "Fake mode that loads the pacakge." nil (pdf-view-mode)) ;;; bongo ;;;###autoload (load-after-function bongo "bongo.el" "Listen to music in Emacs." nil (bongo)) ;;; My PDF facilities (use-package "durand-chercher-pdf" 'durand-chercher-pdf (define-key durand-pdf-mode-map (vector ?q) 'quit-window) (define-key durand-pdf-mode-map (vector ?x) #'durand-chercher-pdf-exit) (define-key durand-pdf-mode-map (vector ?N) 'forward-line) (define-key durand-pdf-mode-map (vector ?n) 'durand-pdf-next-pdf-line) (define-key durand-pdf-mode-map (vector ?P) (lambda () (interactive) (forward-line -1))) (define-key durand-pdf-mode-map (vector ?p) 'durand-pdf-previous-pdf-line) (define-key durand-pdf-mode-map (vector 'return) 'durand-pdf-open-pdf) (define-key durand-pdf-mode-map (vector 32) 'durand-pdf-open-or-scroll-up) (define-key durand-pdf-mode-map (vector 'backspace) 'durand-pdf-open-or-scroll-down) (define-key durand-pdf-mode-map (vector ?o) 'kill-other-buffer-window) (define-key durand-pdf-mode-map (vector ?k) 'kill-current-buffer) (cond ((assoc durand-chercher-pdf-buffer-name display-buffer-alist #'string-match) (setcdr (assoc durand-chercher-pdf-buffer-name display-buffer-alist #'string-match) '((display-buffer-in-tab durand-display-in-one-window) (tab-name . "chercher pdf")))) (t (add-to-list 'display-buffer-alist `(,(rx-to-string `(seq bos ,durand-chercher-pdf-buffer-name eos)) (display-buffer-in-tab durand-display-in-one-window) (tab-name . "chercher pdf")))))) ;;; gnus (load-after-function gnus "gnus-conf.el" "Fake function to load gnus." nil (gnus)) (define-key global-map (vector 3 ?g) #'gnus) ;;; Completion framework configurations (load-config "completion-conf.el") ;;; dired configurations (prepare-in-hook-once prepare-dired dired-mode-hook "dired-conf.el") (add-hook 'dired-mode-hook 'dired-hide-details-mode) ;;; Registers (use-package "rlist" 'rlist (define-key global-map (vector ?\C-x ?r ?L) #'rlist-list-registers) (setq rlist-expert t)) ;;; ibuffer (load-config "ibuffer.el") ;;; Olivetti mode (use-package "olivetti" 'olivetti (durand-hide-minor-mode olivetti-mode olivetti " Oli") (setq-default olivetti-body-width 80)) ;; (load-config "center-buffer.el") ;;; Eshell (load-after-function eshell "eshell-conf.el" "Load Eshell and launch it." nil (eshell)) ;;; tab configurations (load-config "tab-conf.el") ;;; Save sessions (load-config "desktop-conf.el") ;;; Text Configurations (prepare-in-hook-once prepare-text text-mode-hook "text-conf.el") ;;; TeX configurations (prepare-in-hook-once prepare-tex LaTeX-mode-hook "tex-conf.el") ;;; elfeed (load-after-function elfeed "elfeed-conf.el" "Load elfeed and launch it." nil (elfeed)) (define-key global-map (vector 3 101) #'elfeed) ;;; magit (load-after-function magit "magit-conf.el" "Load magit and launch it." nil (defalias 'magit 'magit-status) (magit)) (define-key global-map (vector ?\C-x ?g) 'magit) ;;; eww (load-config "eww-conf.el") ;;; Viewing things (load-config "view-conf.el") ;;; flymake (prepare-in-hook-once prepare-flymake prog-mode-hook "flymake-conf.el") ;;; Don't let s-q quit as I oft press that by accident. (define-key global-map (vector ?\s-q) #'window-toggle-side-windows) ;;; My simple utilities (use-package "durand-simple" 'durand-simple (define-key global-map (vector ?\C-\M-\s) #'durand-simple-mark-dwim) (define-key global-map (vector ?\C-o) #'durand-simple-open-line) (define-key global-map (vector ?\C-') #'durand-simple-insert-pair)) ;;; Searches (load-config "search-conf.el") ;;; Transpose frame (use-package "transpose-frame" 'transpose-frame (define-key global-map (vector ?\C-\s-r) #'rotate-frame-clockwise) (define-key global-map (vector ?\C-\s-t) #'transpose-frame)) ;;; server ;; (cond ;; ((bound-and-true-p server-process)) ;; ((server-start))) (setq gc-cons-threshold (* 2 1024 1024)) (provide 'init) ;;; init.el ends here