Write modules + defuns

This commit is contained in:
Henrik Lissner 2015-06-15 09:06:10 +02:00
parent b998f4ab08
commit 3472a1631f
31 changed files with 1418 additions and 32 deletions

14
modules/module-data.el Normal file
View file

@ -0,0 +1,14 @@
;;; module-data.el --- dbs 'n data formats
(use-package yaml-mode
:mode "\\.ya?ml$"
:init (add-hook! yaml-mode 'narf|enable-tab-width-2))
(use-package json-mode
:mode (("\\.json$" . json-mode)
("\\.jshintrc$" . json-mode)))
;; TODO: Db client
(provide 'module-data)
;;; module-data.el ends here