563 lines
21 KiB
EmacsLisp
563 lines
21 KiB
EmacsLisp
;; The default is 800 kilobytes. Measured in bytes.
|
|
(setq gc-cons-threshold (* 50 1000 1000))
|
|
|
|
(defun start/org-babel-tangle-config ()
|
|
"Automatically tangle our Emacs.org config file when we save it. Credit to Emacs From Scratch for this one!"
|
|
(when (string-equal (file-name-directory (buffer-file-name))
|
|
(expand-file-name user-emacs-directory))
|
|
;; Dynamic scoping to the rescue
|
|
(let ((org-confirm-babel-evaluate nil))
|
|
(org-babel-tangle))))
|
|
|
|
(add-hook 'org-mode-hook (lambda () (add-hook 'after-save-hook #'start/org-babel-tangle-config)))
|
|
|
|
(require 'use-package-ensure) ;; Load use-package-always-ensure
|
|
(setq use-package-always-ensure t) ;; Always ensures that a package is installed
|
|
(setq package-archives '(("melpa" . "https://melpa.org/packages/") ;; Sets default package repositories
|
|
("org" . "https://orgmode.org/elpa/")
|
|
("elpa" . "https://elpa.gnu.org/packages/")
|
|
("nongnu" . "https://elpa.nongnu.org/nongnu/"))) ;; For Eat Terminal
|
|
|
|
(use-package evil
|
|
:init ;; Execute code Before a package is loaded
|
|
(evil-mode)
|
|
:config ;; Execute code After a package is loaded
|
|
(evil-set-initial-state 'eat-mode 'insert) ;; Set initial state in eat terminal to insert mode
|
|
:custom ;; Customization of package custom variables
|
|
(evil-want-keybinding nil) ;; Disable evil bindings in other modes (It's not consistent and not good)
|
|
(evil-want-C-u-scroll t) ;; Set C-u to scroll up
|
|
(evil-want-C-i-jump nil) ;; Disables C-i jump
|
|
(evil-undo-system 'undo-redo) ;; C-r to redo
|
|
(org-return-follows-link t) ;; Sets RETURN key in org-mode to follow links
|
|
;; Unmap keys in 'evil-maps. If not done, org-return-follows-link will not work
|
|
:bind (:map evil-motion-state-map
|
|
("SPC" . nil)
|
|
("RET" . nil)
|
|
("TAB" . nil)))
|
|
(use-package evil-collection
|
|
:after evil
|
|
:config
|
|
;; Setting where to use evil-collection
|
|
;; (setq evil-collection-mode-list '(dired ibuffer magit corfu vertico consult))
|
|
(evil-collection-init))
|
|
|
|
(use-package general
|
|
:config
|
|
(general-evil-setup)
|
|
;; Set up 'SPC' as the leader key
|
|
(general-create-definer start/leader-keys
|
|
:states '(normal insert visual motion emacs)
|
|
:keymaps 'override
|
|
:prefix "SPC" ;; Set leader key
|
|
:global-prefix "C-SPC") ;; Set global leader key
|
|
|
|
(start/leader-keys
|
|
"." '(find-file :wk "Find file")
|
|
"TAB" '(comment-line :wk "Comment lines"))
|
|
|
|
(start/leader-keys
|
|
"p" '(:ignore t :wk "Project")
|
|
"p p" '(project-switch-project :wk "Switch project")
|
|
"p f" '(project-find-file :wk "Find file")
|
|
"p g" '(project-find-regexp :wk "Grep file")
|
|
"p s" '(project-eshell :wk "Shell")
|
|
"p c" '(project-compile :wk "Compile")
|
|
"p b" '(project-switch-to-buffer :wk "Buffers")
|
|
"p K" '(project-kill-buffers :wk "Kill all buffers"))
|
|
|
|
(start/leader-keys
|
|
"f" '(:ignore t :wk "Find")
|
|
"f c" '((lambda () (interactive) (find-file "~/.config/emacs/config.org")) :wk "Edit emacs config")
|
|
"f r" '(consult-recent-file :wk "Recent files")
|
|
"f f" '(consult-fd :wk "Fd search for files")
|
|
"f g" '(consult-ripgrep :wk "Ripgrep search in files")
|
|
"f l" '(consult-line :wk "Find line")
|
|
"f i" '(consult-imenu :wk "Imenu buffer locations"))
|
|
|
|
(start/leader-keys
|
|
"b" '(:ignore t :wk "Buffer Bookmarks")
|
|
"b b" '(consult-buffer :wk "Switch buffer")
|
|
"b k" '(kill-current-buffer :wk "Kill this buffer")
|
|
"b i" '(ibuffer :wk "Ibuffer")
|
|
"b n" '(next-buffer :wk "Next buffer")
|
|
"b p" '(previous-buffer :wk "Previous buffer")
|
|
"b r" '(revert-buffer :wk "Reload buffer")
|
|
"b j" '(consult-bookmark :wk "Bookmark jump"))
|
|
|
|
(start/leader-keys
|
|
"d" '(:ignore t :wk "Dired")
|
|
"d v" '(dired :wk "Open dired")
|
|
"d j" '(dired-jump :wk "Dired jump to current"))
|
|
|
|
(start/leader-keys
|
|
"e" '(:ignore t :wk "Languages Eglot")
|
|
"e e" '(eglot-reconnect :wk "Eglot Reconnect")
|
|
"e d" '(eldoc-doc-buffer :wk "Eldoc Buffer")
|
|
"e f" '(eglot-format :wk "Eglot Format")
|
|
"e l" '(consult-flymake :wk "Consult Flymake")
|
|
"e r" '(eglot-rename :wk "Eglot Rename")
|
|
"e i" '(xref-find-definitions :wk "Find defintion")
|
|
"e v" '(:ignore t :wk "Elisp")
|
|
"e v b" '(eval-buffer :wk "Evaluate elisp in buffer")
|
|
"e v r" '(eval-region :wk "Evaluate elisp in region"))
|
|
|
|
(start/leader-keys
|
|
"g" '(:ignore t :wk "Git")
|
|
"g g" '(magit-status :wk "Magit status"))
|
|
|
|
(start/leader-keys
|
|
"h" '(:ignore t :wk "Help") ;; To get more help use C-h commands (describe variable, function, etc.)
|
|
"h q" '(save-buffers-kill-emacs :wk "Quit Emacs and Daemon")
|
|
"h r" '((lambda () (interactive)
|
|
(load-file "~/.config/emacs/init.el"))
|
|
:wk "Reload Emacs config"))
|
|
|
|
(start/leader-keys
|
|
"s" '(:ignore t :wk "Show")
|
|
"s e" '(eat :wk "Eat terminal"))
|
|
|
|
(start/leader-keys
|
|
"t" '(:ignore t :wk "Toggle")
|
|
"t t" '(visual-line-mode :wk "Toggle truncated lines (wrap)")
|
|
"t l" '(display-line-numbers-mode :wk "Toggle line numbers"))
|
|
|
|
(start/leader-keys
|
|
"o" '(:ignore t :wk "Org")
|
|
"o e" '(find-file "~/RoamNotes/everything.org" :wk "Open notes")))
|
|
|
|
(use-package emacs
|
|
:custom
|
|
(menu-bar-mode nil) ;; Disable the menu bar
|
|
(scroll-bar-mode nil) ;; Disable the scroll bar
|
|
(tool-bar-mode nil) ;; Disable the tool bar
|
|
;;(inhibit-startup-screen t) ;; Disable welcome screen
|
|
|
|
(delete-selection-mode t) ;; Select text and delete it by typing.
|
|
(electric-indent-mode nil) ;; Turn off the weird indenting that Emacs does by default.
|
|
(electric-pair-mode t) ;; Turns on automatic parens pairing
|
|
|
|
(blink-cursor-mode nil) ;; Don't blink cursor
|
|
(global-auto-revert-mode t) ;; Automatically reload file and show changes if the file has changed
|
|
|
|
;;(dired-kill-when-opening-new-dired-buffer t) ;; Dired don't create new buffer
|
|
;;(recentf-mode t) ;; Enable recent file mode
|
|
|
|
;;(global-visual-line-mode t) ;; Enable truncated lines
|
|
;;(display-line-numbers-type 'relative) ;; Relative line numbers
|
|
(global-display-line-numbers-mode t) ;; Display line numbers
|
|
|
|
(mouse-wheel-progressive-speed nil) ;; Disable progressive speed when scrolling
|
|
(scroll-conservatively 10) ;; Smooth scrolling
|
|
(scroll-margin 8)
|
|
|
|
(tab-width 4)
|
|
|
|
(make-backup-files nil) ;; Stop creating ~ backup files
|
|
(auto-save-default nil) ;; Stop creating # auto save files
|
|
:hook
|
|
(prog-mode . (lambda () (hs-minor-mode t))) ;; Enable folding hide/show globally
|
|
:config
|
|
;; Move customization variables to a separate file and load it, avoid filling up init.el with unnecessary variables
|
|
(setq custom-file (locate-user-emacs-file "custom-vars.el"))
|
|
(load custom-file 'noerror 'nomessage)
|
|
:bind (
|
|
([escape] . keyboard-escape-quit) ;; Makes Escape quit prompts (Minibuffer Escape)
|
|
)
|
|
;; Fix general.el leader key not working instantly in messages buffer with evil mode
|
|
:ghook ('after-init-hook
|
|
(lambda (&rest _)
|
|
(when-let ((messages-buffer (get-buffer "*Messages*")))
|
|
(with-current-buffer messages-buffer
|
|
(evil-normalize-keymaps))))
|
|
nil nil t)
|
|
)
|
|
|
|
(use-package gruvbox-theme
|
|
:config
|
|
(load-theme 'gruvbox-dark-medium t)) ;; We need to add t to trust this package
|
|
|
|
(add-to-list 'default-frame-alist '(alpha-background . 90)) ;; For all new frames henceforth
|
|
|
|
(set-face-attribute 'default nil
|
|
:font "JetBrainsMono Nerd Font" ;; Set your favorite type of font or download JetBrains Mono
|
|
:height 120
|
|
:weight 'medium)
|
|
;; This sets the default font on all graphical frames created after restarting Emacs.
|
|
;; Does the same thing as 'set-face-attribute default' above, but emacsclient fonts
|
|
;; are not right unless I also add this method of setting the default font.
|
|
|
|
;;(add-to-list 'default-frame-alist '(font . "JetBrains Mono")) ;; Set your favorite font
|
|
(setq-default line-spacing 0.12)
|
|
|
|
(use-package emacs
|
|
:bind
|
|
("C-+" . text-scale-increase)
|
|
("C--" . text-scale-decrease)
|
|
("<C-wheel-up>" . text-scale-increase)
|
|
("<C-wheel-down>" . text-scale-decrease))
|
|
|
|
(use-package doom-modeline
|
|
:init (doom-modeline-mode 1)
|
|
:custom
|
|
(doom-modeline-height 25) ;; Sets modeline height
|
|
(doom-modeline-bar-width 5) ;; Sets right bar width
|
|
(doom-modeline-persp-name t) ;; Adds perspective name to modeline
|
|
(doom-modeline-persp-icon t)) ;; Adds folder icon next to persp name
|
|
|
|
(use-package project
|
|
:ensure nil)
|
|
|
|
(use-package envrc
|
|
:hook
|
|
(after-init . envrc-global-mode))
|
|
|
|
(use-package eglot
|
|
:ensure nil ;; Don't install eglot because it's now built-in
|
|
:hook ((c-ts-mode
|
|
c++-ts-mode
|
|
go-ts-mode
|
|
java-ts-mode
|
|
vue-mode
|
|
typescript-ts-mode)
|
|
. eglot-ensure)
|
|
:custom
|
|
;; Good default
|
|
(eglot-events-buffer-size 0) ;; No event buffers (Lsp server logs)
|
|
(eglot-autoshutdown t);; Shutdown unused servers.
|
|
(eglot-report-progress nil) ;; Disable ls:init
|
|
(eglot-connect-timeout 120)
|
|
;; Manual lsp servers
|
|
:config
|
|
(add-to-list 'eglot-server-programs
|
|
`(vue-mode . ("vue-language-server" "--stdio" :initializationOptions
|
|
(:typescript (:tsdk "/Users/mthomson/dev/work/westjet/profile-app-spa/node_modules/typescript/lib")
|
|
:vue (:hybridMode :json-false)))))
|
|
(add-to-list 'eglot-server-programs
|
|
`(typescript-ts-mode . ("vue-language-server" "--stdio" :initializationOptions
|
|
(:typescript (:tsdk "/Users/mthomson/dev/work/westjet/profile-app-spa/node_modules/typescript/lib")
|
|
:vue (:hybridMode :json-false)))))
|
|
)
|
|
|
|
(use-package eldoc-box
|
|
:hook
|
|
(eglot-managed-mode . eldoc-box-hover-at-point-mode)
|
|
:custom
|
|
(eldoc-box-prettify-ts-errors t))
|
|
|
|
(use-package yasnippet-snippets
|
|
:hook (prog-mode . yas-minor-mode))
|
|
|
|
(use-package exec-path-from-shell
|
|
:init
|
|
(setq exec-path-from-shell-arguments nil)
|
|
;; (add-to-list 'exec-path "/etc/profiles/per-user/mthomson/bin")
|
|
(exec-path-from-shell-initialize))
|
|
|
|
(use-package treesit
|
|
:ensure nil)
|
|
|
|
(use-package treesit-auto
|
|
:ensure t
|
|
:commands global-treesit-auto-mode
|
|
:custom
|
|
(treesit-auto-install 'prompt)
|
|
:config
|
|
(treesit-auto-add-to-auto-mode-alist 'all)
|
|
(global-treesit-auto-mode))
|
|
|
|
;; (add-to-list 'load-path (concat user-emacs-directory "vue-ts-mode"))
|
|
;; (require 'vue-ts-mode)
|
|
|
|
;; (use-package vue-mode)
|
|
|
|
(use-package web-mode
|
|
:ensure t
|
|
:mode
|
|
(("\\.phtml\\'" . web-mode)
|
|
("\\.php\\'" . web-mode)
|
|
("\\.tpl\\'" . web-mode)
|
|
("\\.[agj]sp\\'" . web-mode)
|
|
("\\.as[cp]x\\'" . web-mode)
|
|
("\\.erb\\'" . web-mode)
|
|
("\\.mustache\\'" . web-mode)
|
|
("\\.djhtml\\'" . web-mode)))
|
|
|
|
(use-package flymake-eslint
|
|
:hook
|
|
(web-mode . (lambda() (flymake-eslint-enable)))
|
|
:custom
|
|
(flymake-eslint-defer-binary-check t))
|
|
|
|
(define-derived-mode vue-mode web-mode "Vue")
|
|
(add-to-list 'auto-mode-alist '("\\.vue\\'" . vue-mode))
|
|
|
|
(use-package nix-mode
|
|
:mode "\\.nix\\'")
|
|
|
|
(use-package org
|
|
:ensure nil
|
|
:custom
|
|
(org-edit-src-content-indentation 4) ;; Set src block automatic indent to 4 instead of 2.
|
|
(org-todo-keywords '((sequence "TODO(t!)" "IN-PROGRESS(p)" "CODE-REVIEW(r)" "BLOCKED(b)" "|" "DONE(d!)" "CANCELED(c!)")))
|
|
(org-todo-keyword-faces
|
|
'(("IN-PROGRESS" . "yellow") ("BLOCKED" . "magenta") ("CODE-REVIEW" . "blue") ("CANCELED" . "grey") ("DONE" . "green")))
|
|
(org-treat-insert-todo-heading-as-state-change t)
|
|
(org-log-into-drawer t)
|
|
:config
|
|
(add-to-list 'org-modules 'org-habit t)
|
|
(add-to-list 'org-agenda-files "~/RoamNotes/everything.org")
|
|
:hook
|
|
(org-mode . org-indent-mode) ;; Indent text
|
|
;; The following prevents <> from auto-pairing when electric-pair-mode is on.
|
|
;; Otherwise, org-tempo is broken when you try to <s TAB...
|
|
(org-mode . (lambda ()
|
|
(setq-local electric-pair-inhibit-predicate
|
|
`(lambda (c)
|
|
(if (char-equal c ?<) t (,electric-pair-inhibit-predicate c))))))
|
|
)
|
|
|
|
(use-package toc-org
|
|
:commands toc-org-enable
|
|
:hook (org-mode . toc-org-mode))
|
|
|
|
(use-package org-superstar
|
|
:after org
|
|
:hook (org-mode . org-superstar-mode))
|
|
|
|
(use-package org-tempo
|
|
:ensure nil
|
|
:after org)
|
|
|
|
;; (use-package org-roam
|
|
;; :ensure t
|
|
;; :custom
|
|
;; (org-roam-directory "~/RoamNotes")
|
|
;; :bind (("C-c n l" . org-roam-buffer-toggle)
|
|
;; ("C-c n f" . org-roam-node-find)
|
|
;; ("C-c n i" . org-roam-node-insert))
|
|
;; :config
|
|
;; (org-roam-db-autosync-mode))
|
|
|
|
(use-package eat
|
|
:hook ('eshell-load-hook #'eat-eshell-mode)
|
|
:custom
|
|
(eat-term-name "xterm-256color"))
|
|
|
|
;; (add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory))
|
|
|
|
;; (require 'start-multiFileExample)
|
|
|
|
;; (start/hello)
|
|
|
|
(use-package mu4e
|
|
|
|
:config
|
|
;; mbsync
|
|
(setq mu4e-get-mail-command (concat (executable-find "mbsync") " -a"))
|
|
(setq mu4e--get-mail-password-regexp "^Master Password: $")
|
|
(setq mu4e-update-interval 300)
|
|
|
|
;; msmtp
|
|
(setq send-mail-function 'sendmail-send-it)
|
|
(setq sendmail-program (executable-find "msmtp"))
|
|
(setq message-sendmail-envelope-from 'header)
|
|
|
|
;; contexts
|
|
(setq mu4e-contexts
|
|
`(,(make-mu4e-context
|
|
:name "personal"
|
|
:enter-func
|
|
(lambda () (mu4e-message "Opening michael@michaelthomson.dev"))
|
|
:leave-func
|
|
(lambda () (mu4e-message "Closing michael@michaelthomson.dev"))
|
|
:match-func
|
|
(lambda (msg)
|
|
(when msg
|
|
(mu4e-message-contact-field-matches msg
|
|
:to "michael@michaelthomson.dev")))
|
|
:vars '((user-mail-address . "michael@michaelthomson.dev" )
|
|
(user-full-name . "Michael Thomson")
|
|
(mu4e-drafts-folder . "/personal/Drafts")
|
|
(mu4e-refile-folder . "/personal/Archive")
|
|
(mu4e-sent-folder . "/personal/Sent")
|
|
(mu4e-trash-folder . "/personal/Trash")))
|
|
))
|
|
)
|
|
|
|
(use-package nerd-icons
|
|
:if (display-graphic-p))
|
|
|
|
(use-package nerd-icons-dired
|
|
:hook (dired-mode . (lambda () (nerd-icons-dired-mode t))))
|
|
|
|
(use-package nerd-icons-ibuffer
|
|
:hook (ibuffer-mode . nerd-icons-ibuffer-mode))
|
|
|
|
(use-package magit
|
|
;; :custom (magit-diff-refine-hunk (quote all)) ;; Shows inline diff
|
|
:commands magit-status
|
|
:custom
|
|
(magit-git-executable "git"))
|
|
|
|
(use-package diff-hl
|
|
:hook ((dired-mode . diff-hl-dired-mode-unless-remote)
|
|
(magit-pre-refresh . diff-hl-magit-pre-refresh)
|
|
(magit-post-refresh . diff-hl-magit-post-refresh))
|
|
:init (global-diff-hl-mode))
|
|
|
|
(use-package corfu
|
|
;; Optional customizations
|
|
:custom
|
|
(corfu-cycle t) ;; Enable cycling for `corfu-next/previous'
|
|
(corfu-auto t) ;; Enable auto completion
|
|
(corfu-auto-prefix 2) ;; Minimum length of prefix for auto completion.
|
|
(corfu-popupinfo-mode t) ;; Enable popup information
|
|
(corfu-popupinfo-delay 0.5) ;; Lower popupinfo delay to 0.5 seconds from 2 seconds
|
|
(corfu-separator ?\s) ;; Orderless field separator, Use M-SPC to enter separator
|
|
;; (corfu-quit-at-boundary nil) ;; Never quit at completion boundary
|
|
;; (corfu-quit-no-match nil) ;; Never quit, even if there is no match
|
|
;; (corfu-preview-current nil) ;; Disable current candidate preview
|
|
;; (corfu-preselect 'prompt) ;; Preselect the prompt
|
|
;; (corfu-on-exact-match nil) ;; Configure handling of exact matches
|
|
;; (corfu-scroll-margin 5) ;; Use scroll margin
|
|
(completion-ignore-case t)
|
|
;; Enable indentation+completion using the TAB key.
|
|
;; `completion-at-point' is often bound to M-TAB.
|
|
(tab-always-indent 'complete)
|
|
(corfu-preview-current nil) ;; Don't insert completion without confirmation
|
|
;; Recommended: Enable Corfu globally. This is recommended since Dabbrev can
|
|
;; be used globally (M-/). See also the customization variable
|
|
;; `global-corfu-modes' to exclude certain modes.
|
|
:init
|
|
(global-corfu-mode))
|
|
|
|
(use-package nerd-icons-corfu
|
|
:after corfu
|
|
:init (add-to-list 'corfu-margin-formatters #'nerd-icons-corfu-formatter))
|
|
|
|
(use-package cape
|
|
:after corfu
|
|
:init
|
|
;; Add to the global default value of `completion-at-point-functions' which is
|
|
;; used by `completion-at-point'. The order of the functions matters, the
|
|
;; first function returning a result wins. Note that the list of buffer-local
|
|
;; completion functions takes precedence over the global list.
|
|
;; The functions that are added later will be the first in the list
|
|
|
|
(add-to-list 'completion-at-point-functions #'cape-dabbrev) ;; Complete word from current buffers
|
|
(add-to-list 'completion-at-point-functions #'cape-dict) ;; Dictionary completion
|
|
(add-to-list 'completion-at-point-functions #'cape-file) ;; Path completion
|
|
(add-to-list 'completion-at-point-functions #'cape-elisp-block) ;; Complete elisp in Org or Markdown mode
|
|
(add-to-list 'completion-at-point-functions #'cape-keyword) ;; Keyword/Snipet completion
|
|
|
|
;;(add-to-list 'completion-at-point-functions #'cape-abbrev) ;; Complete abbreviation
|
|
;;(add-to-list 'completion-at-point-functions #'cape-history) ;; Complete from Eshell, Comint or minibuffer history
|
|
;;(add-to-list 'completion-at-point-functions #'cape-line) ;; Complete entire line from current buffer
|
|
;;(add-to-list 'completion-at-point-functions #'cape-elisp-symbol) ;; Complete Elisp symbol
|
|
;;(add-to-list 'completion-at-point-functions #'cape-tex) ;; Complete Unicode char from TeX command, e.g. \hbar
|
|
;;(add-to-list 'completion-at-point-functions #'cape-sgml) ;; Complete Unicode char from SGML entity, e.g., &alpha
|
|
;;(add-to-list 'completion-at-point-functions #'cape-rfc1345) ;; Complete Unicode char using RFC 1345 mnemonics
|
|
)
|
|
|
|
(use-package orderless
|
|
:custom
|
|
(completion-styles '(orderless basic))
|
|
(completion-category-overrides '((file (styles basic partial-completion)))))
|
|
|
|
(use-package vertico
|
|
:init
|
|
(vertico-mode))
|
|
|
|
(savehist-mode) ;; Enables save history mode
|
|
|
|
(use-package marginalia
|
|
:after vertico
|
|
:init
|
|
(marginalia-mode))
|
|
|
|
(use-package nerd-icons-completion
|
|
:after marginalia
|
|
:config
|
|
(nerd-icons-completion-mode)
|
|
:hook
|
|
('marginalia-mode-hook . 'nerd-icons-completion-marginalia-setup))
|
|
|
|
(use-package consult
|
|
;; Enable automatic preview at point in the *Completions* buffer. This is
|
|
;; relevant when you use the default completion UI.
|
|
:hook (completion-list-mode . consult-preview-at-point-mode)
|
|
:init
|
|
;; Optionally configure the register formatting. This improves the register
|
|
;; preview for `consult-register', `consult-register-load',
|
|
;; `consult-register-store' and the Emacs built-ins.
|
|
(setq register-preview-delay 0.5
|
|
register-preview-function #'consult-register-format)
|
|
|
|
;; Optionally tweak the register preview window.
|
|
;; This adds thin lines, sorting and hides the mode line of the window.
|
|
(advice-add #'register-preview :override #'consult-register-window)
|
|
|
|
;; Use Consult to select xref locations with preview
|
|
(setq xref-show-xrefs-function #'consult-xref
|
|
xref-show-definitions-function #'consult-xref)
|
|
:config
|
|
;; Optionally configure preview. The default value
|
|
;; is 'any, such that any key triggers the preview.
|
|
;; (setq consult-preview-key 'any)
|
|
;; (setq consult-preview-key "M-.")
|
|
;; (setq consult-preview-key '("S-<down>" "S-<up>"))
|
|
|
|
;; For some commands and buffer sources it is useful to configure the
|
|
;; :preview-key on a per-command basis using the `consult-customize' macro.
|
|
;; (consult-customize
|
|
;; consult-theme :preview-key '(:debounce 0.2 any)
|
|
;; consult-ripgrep consult-git-grep consult-grep
|
|
;; consult-bookmark consult-recent-file consult-xref
|
|
;; consult--source-bookmark consult--source-file-register
|
|
;; consult--source-recent-file consult--source-project-recent-file
|
|
;; :preview-key "M-."
|
|
;; :preview-key '(:debounce 0.4 any))
|
|
|
|
;; By default `consult-project-function' uses `project-root' from project.el.
|
|
;; Optionally configure a different project root function.
|
|
;;;; 1. project.el (the default)
|
|
;; (setq consult-project-function #'consult--default-project--function)
|
|
;;;; 2. vc.el (vc-root-dir)
|
|
;; (setq consult-project-function (lambda (_) (vc-root-dir)))
|
|
;;;; 3. locate-dominating-file
|
|
;; (setq consult-project-function (lambda (_) (locate-dominating-file "." ".git")))
|
|
;;;; 4. projectile.el (projectile-project-root)
|
|
;; (autoload 'projectile-project-root "projectile")
|
|
;; (setq consult-project-function (lambda (_) (projectile-project-root)))
|
|
;;;; 5. No project support
|
|
;; (setq consult-project-function nil)
|
|
)
|
|
|
|
(use-package diminish)
|
|
|
|
(use-package rainbow-delimiters
|
|
:hook (prog-mode . rainbow-delimiters-mode))
|
|
|
|
(use-package which-key
|
|
:ensure nil ;; Don't install which-key because it's now built-in
|
|
:init
|
|
(which-key-mode 1)
|
|
:diminish
|
|
:custom
|
|
(which-key-side-window-location 'bottom)
|
|
(which-key-sort-order #'which-key-key-order-alpha) ;; Same as default, except single characters are sorted alphabetically
|
|
(which-key-sort-uppercase-first nil)
|
|
(which-key-add-column-padding 1) ;; Number of spaces to add to the left of each column
|
|
(which-key-min-display-lines 6) ;; Increase the minimum lines to display, because the default is only 1
|
|
(which-key-idle-delay 0.8) ;; Set the time delay (in seconds) for the which-key popup to appear
|
|
(which-key-max-description-length 25)
|
|
(which-key-allow-imprecise-window-fit nil)) ;; Fixes which-key window slipping out in Emacs Daemon
|
|
|
|
;; PDF tools
|
|
(use-package pdf-tools)
|
|
|
|
;; Make gc pauses faster by decreasing the threshold.
|
|
(setq gc-cons-threshold (* 2 1000 1000))
|
|
;; Increase the amount of data which Emacs reads from the process
|
|
(setq read-process-output-max (* 1024 1024)) ;; 1mb
|