From ce55643110b57a1e5c8caa9622a6f9187a3f6476 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 18 Feb 2020 17:18:57 +0100 Subject: [PATCH] Emacs: Fixed dependencies for company-auctex and company-nginx. --- init.d/text/latex.el | 4 ++-- init.d/text/misc.el | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/init.d/text/latex.el b/init.d/text/latex.el index b8d3dc5..f8e3e22 100644 --- a/init.d/text/latex.el +++ b/init.d/text/latex.el @@ -1,6 +1,6 @@ ;;; 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: @@ -28,7 +28,7 @@ ;; Auto complete for LaTeX. (use-package company-auctex - :after (auctex) + :after (auctex company) :hook (LaTeX-mode . company-auctex-init) diff --git a/init.d/text/misc.el b/init.d/text/misc.el index 961c68a..9c2d577 100644 --- a/init.d/text/misc.el +++ b/init.d/text/misc.el @@ -1,6 +1,6 @@ ;;; 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: @@ -35,7 +35,7 @@ ) (use-package company-nginx - :after nginx-mode + :after (nginx-mode company) :hook (nginx-mode . company-nginx-keywords)