Added 'dotenv-mode'

An Emacs mode for .env files that includes the following features
This commit is contained in:
Jesús
2019-09-10 12:43:31 -05:00
parent aadca913ea
commit ebf8bb77cb
3 changed files with 14 additions and 1 deletions

12
modules/init-dotenv.el Normal file
View File

@@ -0,0 +1,12 @@
;;; init-dotenv.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;; dotenv-mode
(use-package dotenv-mode
:pin "MELPA"
:mode ("\\.env\\'" . dotenv-mode))
(provide 'init-dotenv)
;;; init-dotenv.el ends here