diff options
author | Matthew Kosarek <matthew.kosarek@vention.cc> | 2023-05-12 09:58:50 -0400 |
---|---|---|
committer | Matthew Kosarek <matthew.kosarek@vention.cc> | 2023-05-12 09:58:50 -0400 |
commit | 6deedd44e87075569b0459ae1ab7bd15399c575d (patch) | |
tree | 44473211f95f56fd1778ebcb69494f8687fe4518 | |
parent | fe4aee4c602a4526dbc81bc9945ef10319790f3e (diff) |
Fix for bad background on company quickhelp
-rw-r--r-- | lisp/general.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/general.el b/lisp/general.el index 7663579..c66c225 100644 --- a/lisp/general.el +++ b/lisp/general.el @@ -255,8 +255,8 @@ :defer t :init (company-quickhelp-mode 1) :config - (setq company-quickhelp-delay 0.1 - ) + (setq company-quickhelp-delay 0.1) + (setq company-quickhelp-color-background (face-attribute 'default :background)) ) ;; Eglot |