diff options
author | Thanos Apollo <[email protected]> | 2023-04-30 09:24:21 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-04-30 09:24:21 +0300 |
commit | 2ff3f4c2698f23a2ef6d89f21d18883f5384388b (patch) | |
tree | 3a7cebf42d2cbe9ae838d4f8d45af2c91c3b7a6c /.emacs.d/init.el | |
parent | 25680a690101ff517b418cc27389a24dd89fd6f5 (diff) |
emacs: enable global-company-mode
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r-- | .emacs.d/init.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index f2026a2..13a2be9 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -530,12 +530,14 @@ Contains the list of packages that need to be installed.") :after lsp-mode :hook (lsp-mode . company-mode) :bind (:map company-active-map - ("<tab>" . company-complete-selection)) - (:map lsp-mode-map - ("<tab>" . company-indent-or-complete-common)) + ("<tab>" . company-complete-selection)) + (:map lsp-mode-map + ("<tab>" . company-indent-or-complete-common)) :custom (company-minimum-prefix-length 1) - (company-idle-delay 0.0)) + (company-idle-delay 0.0) + :config + (setq global-company-mode t)) (use-package dap-mode :custom |