Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/plapadoo/vdf-mode
- Owner: plapadoo
- License: gpl-3.0
- Created: 2019-08-15T11:06:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-03T07:14:01.000Z (almost 4 years ago)
- Last Synced: 2024-12-09T05:49:54.895Z (about 2 months ago)
- Topics: editing, emacs, steam, valve
- Language: Emacs Lisp
- Size: 24.4 KB
- Stars: 2
- Watchers: 6
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
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