Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/plapadoo/vdf-mode

emacs major mode for editing Valve vdf files
https://github.com/plapadoo/vdf-mode

editing emacs steam valve

Last synced: about 1 month ago
JSON representation

emacs major mode for editing Valve vdf files

Awesome Lists containing this project

README

        

* vdf-mode.el

Major mode for editing Valve VDF (KeyValues) files. For a definition of this format, see [[https://developer.valvesoftware.com/wiki/KeyValues][here]].

The mode features indentation, highlighting and parentheses matching.

Created while developing [[https://reaktron.com/][reaktron]].

** Install

Since the package is not in MELPA yet, you have to manually install it:

- Clone this repository somehere, say =$HOME=
- Open your emacs configuration file
- Append the following
#+begin_src lisp
(add-to-list 'load-path "~/vdf-mode")
(require 'vdf-mode)
#+end_src