Emacs: Fixed dependencies for company-auctex and company-nginx.

This commit is contained in:
tastytea 2020-02-18 17:18:57 +01:00
parent 39652ffdcb
commit ce55643110
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
;;; latex.el --- Settings for LaTeX. -*- lexical-binding: t; -*- ;;; latex.el --- Settings for LaTeX. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-12-26T07:41:35+00:00> ;; Time-stamp: <2020-02-18T17:18:01+0100>
;;; Commentary: ;;; Commentary:
@ -28,7 +28,7 @@
;; Auto complete for LaTeX. ;; Auto complete for LaTeX.
(use-package company-auctex (use-package company-auctex
:after (auctex) :after (auctex company)
:hook :hook
(LaTeX-mode . company-auctex-init) (LaTeX-mode . company-auctex-init)

View File

@ -1,6 +1,6 @@
;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*- ;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-02-18T16:37:25+0100> ;; Time-stamp: <2020-02-18T17:18:24+0100>
;;; Commentary: ;;; Commentary:
@ -35,7 +35,7 @@
) )
(use-package company-nginx (use-package company-nginx
:after nginx-mode :after (nginx-mode company)
:hook :hook
(nginx-mode . company-nginx-keywords) (nginx-mode . company-nginx-keywords)