-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
With this config esh-autosuggest will not work:
(require 'use-package)
(use-package evil
:after general
:init
(setq evil-want-keybinding nil evil-want-integration t)
:config
(setq evil-ex-substitute-global t)
(setq evil-undo-system 'undo-redo)
(evil-mode 1)
)
(use-package evil-collection
:after evil
:config
(evil-collection-init))
(use-package general
:init
(setq evil-want-keybinding nil
evil-want-C-d-scroll t
evil-want-C-u-scroll t
evil-want-integration t
)
:config
(general-auto-unbind-keys) ;; NOTE not sure this works?
(general-evil-setup t))
(use-package eshell :config)
(setq eshell-history-size 1000000)
(setq eshell-destroy-buffer-when-process-dies t)
(use-package esh-autosuggest
:hook (eshell-mode . esh-autosuggest-mode))
(use-package company
:config
(setq company-minimum-prefix-length 1
company-idle-delay 0.4
company-selection-wrap-around t
company-dabbrev-downcase nil
)
(global-company-mode))
However... if you comment out the evil-collection-init part out and call that after loading an eshell with esh-autosuggest you'll notice it changes the style of completion. Not sure why that is.
Metadata
Metadata
Assignees
Labels
No labels