diff options
author | mattkae <mattkae@protonmail.com> | 2023-02-02 08:01:08 -0500 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2023-02-02 08:01:08 -0500 |
commit | f01a974c0dc0cb90fd385b0859fc7e6a9d4391d2 (patch) | |
tree | bbc7e9ec8686a1129d976d35e3f845989fe6148e /lisp | |
parent | 8b5874e9acb48f7b3b414b4556762c1835ee4c5d (diff) |
Uesing helm posframe
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/general.el | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lisp/general.el b/lisp/general.el index 3fdf129..c8f4ca0 100644 --- a/lisp/general.el +++ b/lisp/general.el @@ -80,9 +80,15 @@ (delete-selection-mode 1) ;; I am using the helm package, of course -(use-package helm) +(use-package helm + :ensure t) (helm-mode 1) +(use-package helm-posframe + :ensure t + :config + (helm-posframe-enable)) + ;; Projectile for project navigation (use-package projectile) (require 'projectile) @@ -160,7 +166,7 @@ ;; Global key binds (require 'eglot) (bind-key* (kbd "<f2>") #'eglot-rename) -(bind-key* (kbd "C-x C-f") 'helm-find-files) +;(bind-key* (kbd "C-x C-f") 'helm-find-files) ;(bind-key* (kbd "C-s") 'helm-do-grep-ag) (bind-key* (kbd "M-x") 'helm-M-x) (bind-key* (kbd "M-.") 'xref-find-definitions) @@ -221,7 +227,7 @@ :defer t :init (add-hook 'after-init-hook 'global-company-mode) :config - (setq company-idle-delay 0.3 + (setq company-idle-delay 0.1 company-minimum-prefix-length 2 company-tooltip-limit 20 company-backends '((company-capf company-gtags company-elisp company-css company-dabbrev)) |