Correct package name for cc-mode

This commit is contained in:
contrapunctus 2021-11-20 01:24:52 +05:30
parent 728476fbe8
commit 1f7dfe2c94
1 changed files with 1 additions and 3 deletions

View File

@ -3619,13 +3619,11 @@ Create advice for =lispy-pair= - if =lispy--in-string-or-comment-p= is true, sel
#+END_SRC
** c
#+BEGIN_SRC emacs-lisp
(use-package c-mode
(use-package cc-mode
:bind (:map c-mode-map
("TAB" . company-indent-or-complete-common)
("C-i" . company-indent-or-complete-common)))
(use-package cc-mode)
(use-package irony-eldoc
:hook
(c-mode . irony-eldoc))