https://github.com/mitchpaulus/neobem-vim
Syntax highlighting for Neobem file (neobem.io) in Vim/Neovim
https://github.com/mitchpaulus/neobem-vim
energyplus neobem vim vim-plugin
Last synced: 2 months ago
JSON representation
Syntax highlighting for Neobem file (neobem.io) in Vim/Neovim
- Host: GitHub
- URL: https://github.com/mitchpaulus/neobem-vim
- Owner: mitchpaulus
- License: mit
- Created: 2021-01-31T22:16:49.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-12T14:11:32.000Z (9 months ago)
- Last Synced: 2025-03-17T19:21:48.649Z (3 months ago)
- Topics: energyplus, neobem, vim, vim-plugin
- Language: Vim Script
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Neobem Syntax Highlighting
This plugin provides syntax highlighting for [Neobem](https://neobem.io),
a domain specific language that targets [EnergyPlus](https://energyplus.net/) idf files as the output.## Installation
Most people will typically install plugins through a plugin manager,
such as [vim-plug](https://github.com/junegunn/vim-plug).In the more recent versions of Vim/Neovim,
you can clone this repository directly to a location in the `packpath`:```sh
# Vim
mkdir -p ~/.vim/pack/yourpackagename/start
git clone https://github.com/mitchpaulus/neobem-vim.git ~/.vim/pack/yourpackagename/start/neobem-vim
``````sh
# Neovim
mkdir -p ~/.local/share/nvim/site/pack/yourpackagename/start/
git clone https://github.com/mitchpaulus/neobem-vim.git ~/.local/share/nvim/site/pack/yourpackagename/start/neobem-vim
```