From a80292f9d69c0115514dcb64bf41dc90ac17a8d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?CAPELLE=20Mika=C3=ABl?= Date: Mon, 13 Jan 2020 15:40:55 +0100 Subject: [PATCH] [yaml] Add yaml-mode. --- elisp/init-langs.el | 59 +++++++++++++++++++++++++++++++++++++++++++++ init.el | 2 ++ 2 files changed, 61 insertions(+) create mode 100644 elisp/init-langs.el diff --git a/elisp/init-langs.el b/elisp/init-langs.el new file mode 100644 index 0000000..db2d097 --- /dev/null +++ b/elisp/init-langs.el @@ -0,0 +1,59 @@ +;;; init-langs.el --- Various languages initialization. +;; +;; Filename: init-langs.el +;; Description: +;; Author: Mikaël Capelle +;; Maintainer: +;; Copyright (C) 2019 Mikaël Capelle +;; Created: lun. janv. 13 15:17:10 2020 (+0100) +;; Version: +;; Package-Requires: () +;; Last-Updated: +;; By: +;; Update #: 22 +;; URL: +;; Doc URL: +;; Keywords: +;; Compatibility: +;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;;; Commentary: +;; +;; +;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;;; Change Log: +;; +;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;; This program is free software: you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or (at +;; your option) any later version. +;; +;; This program is distributed in the hope that it will be useful, but +;; WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;; General Public License for more details. +;; +;; You should have received a copy of the GNU General Public License +;; along with GNU Emacs. If not, see . +;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;;; Code: + +(eval-when-compile + (require 'init-flycheck) + (require 'init-const)) + +;; YAML +(use-package yaml-mode + :mode "\\.yml\\'") + +(provide 'init-langs) +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; init-langs.el ends here diff --git a/init.el b/init.el index 6595ab7..47f4f56 100644 --- a/init.el +++ b/init.el @@ -197,6 +197,8 @@ increase this.") (require 'init-latex) +(require 'init-langs) + (require 'init-ess) ;; Web Development