summary refs log tree commit diff
path: root/config/init-toml.el
blob: 28b56db88a50663f65204201e42b4dec42aecf27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;; init-toml.el --- Configure TOML related things -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>

;;; Commentary:

;; For TOML

;;; Code:

(use-package toml-mode
  :defer t
  :ensure t)

(provide 'init-toml)

;;; init-toml.el ends here