Go to file
Felix Chern f6c61817b0 Merge pull request #10 from marsam/master
Inherit from conf-mode
2016-11-07 10:00:50 -08:00
.gitignore init commit, but everything is almost done. 2013-02-27 16:56:10 -08:00
README.mkdn added float number suport 2013-03-02 07:48:26 -08:00
toml-mode.el Inherit from conf mode 2016-10-20 23:23:14 -05:00

README.mkdn

# toml-mode v0.1.3 (beta)

Emacs syntax hilighting for [TOML][toml]. This is my first Emacs syntax hilighting plugin; as a result, it may be buggy.

## INSTALL

If you have [marmalade][marmalade] or [melpa][melpa] and emacs24 installed, simply type

    M-x package-install toml-mode

In your .emacs

    (require 'toml-mode)

If you don't have marmalade installed, add these to your .emacs

    (require 'package)
    (add-to-list 'package-archives 
        '("marmalade" . "http://marmalade-repo.org/packages/"))
    (package-initialize)

`M-x eval-buffer` to evaluate it, and then do `M-x package-refresh-contents` to load in the package listing.

## LICENSE

Copyright (C) 2013 by Felix Chern

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, 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][gpl] for more details.

You should have received a copy of the GNU General Public License
along with GNU Emacs; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.

[toml]: https://github.com/mojombo/toml
[marmalade]: http://marmalade-repo.org
[melpa]: http://melpa.milkbox.net
[gpl]: http://www.gnu.org/licenses/gpl.html