Whole completion thingy

This commit is contained in:
Anthony Cicchetti 2021-03-21 20:44:49 -04:00
parent c163b96e5f
commit 07fbffe868

View file

@ -64,7 +64,8 @@
("melpa" . "https://melpa.org/packages/")
("org" . "https://orgmode.org/elpa/")))
'(package-selected-packages
'(lua-mode lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit))
'(embark-consult embark selectrum-prescient prescient marginalia consult-flycheck consult-selectrum selectrum lua-mode lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit))
'(prescient-filter-method '(literal regexp initialism fuzzy))
'(ring-bell-function 'ignore)
'(rustic-format-trigger 'on-compile)
'(rustic-indent-method-chain t)
@ -184,7 +185,7 @@
(evil-define-key 'normal 'global (kbd "<leader>i") 'help)
(evil-define-key 'normal 'global (kbd "gc") 'evil-commentary)
(evil-define-key 'normal 'global (kbd "<leader>u") 'undo-tree-visualize)
(evil-define-key 'normal 'global (kbd "<leader> b") 'ibuffer)
(evil-define-key 'normal 'global (kbd "<leader> b") 'consult-buffer)
;; Avy
(use-package avy
@ -207,6 +208,9 @@
;; which-key
(use-package which-key
:after (evil)
:init
(setq which-key-show-operator-state-maps t)
:config (which-key-mode))
;; Git gutter
@ -329,6 +333,65 @@
(use-package treemacs-magit
:after (treemacs magit))
;; Prescient
(use-package prescient)
(use-package selectrum-prescient
:after (prescient selectrum)
:init
(selectrum-prescient-mode 1))
;; Selectrum
(use-package selectrum
:init
(selectrum-mode 1))
;; Consult, Marginalia, embark
(use-package consult
:after (evil)
:config
(evil-define-key 'normal 'global (kbd "<leader> c f") 'find-fd)
(evil-define-key 'normal 'global (kbd "<leader> c g") 'consult-ripgrep)
:init
(defun find-fd (&optional dir initial)
(interactive "P")
(let ((consult-find-command "fd --color=never --full-path ARG OPTS"))
(consult-find dir initial))) (fset 'multi-occur #'consult-multi-occur)
(advice-add #'register-preview :override #'consult-register-window)
:config)
(use-package consult-flycheck
:after (consult flycheck)
:bind (:map flycheck-command-map
("!" . consult-flycheck)))
(use-package marginalia
:init
(marginalia-mode)
(advice-add #'marginalia-cycle :after
(lambda () (when (bound-and-true-p selectrum-mode) (selectrum-exhibit 'keep-selected))))
(setq marginalia-annotators '(marginalia-annotators-heavy marginalia-annotators-light nil)))
(use-package embark
:ensure t
:after (evil)
:init
(evil-define-key 'normal 'global (kbd "<leader> e") 'embark-act)
(setq embark-action-indicator
(lambda (map _target)
(which-key--show-keymap "Embark" map nil nil #'no-paging)
#'which-key--hide-popup-ignore-command)
embark-become-indicator embark-action-indicator))
;; Consult users will also want the embark-consult package.
(use-package embark-consult
:ensure t
:after (embark consult)
:demand t
:hook
(embark-collect-mode . embark-consult-preview-minor-mode))
(if (file-directory-p "~/.emacs.d/custom")
(require 'lsp))