Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teal-language/vim-teal
Teal language support for Vim
https://github.com/teal-language/vim-teal
ale linter lua syntax-highlighting teal vim vim-plugin
Last synced: 3 months ago
JSON representation
Teal language support for Vim
- Host: GitHub
- URL: https://github.com/teal-language/vim-teal
- Owner: teal-language
- License: mit
- Created: 2020-03-10T18:40:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-19T12:18:31.000Z (5 months ago)
- Last Synced: 2024-06-19T22:16:34.222Z (5 months ago)
- Topics: ale, linter, lua, syntax-highlighting, teal, vim, vim-plugin
- Language: Vim Script
- Homepage:
- Size: 222 KB
- Stars: 33
- Watchers: 4
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# vim-teal
This plugin provides [Teal](https://github.com/teal-language/tl) language support for Vim.![](media/fizzbuzz.gif)
## Features
- Syntax highlighting
- Automatic indentation
- Linting (requires [ALE](https://github.com/dense-analysis/ale))
- Automatic insertion of `end` tokens (requires [vim-endwise](https://github.com/tpope/vim-endwise))
- `:compiler` support## Install
Using [vim-plug](https://github.com/junegunn/vim-plug):
```vim
" Teal language support
Plug 'teal-language/vim-teal'" Optional dependencies; will be loaded on-demand when editing Teal files
Plug 'dense-analysis/ale', { 'for': 'teal' }
Plug 'tpope/vim-endwise', { 'for': 'teal' }
```You should also make sure that the Teal compiler [is available in your PATH:](https://github.com/teal-language/tl#installing)
```
luarocks install tl
```## Contributors
Contributions are greatly appreciated! Feel free to fork [this repository](https://github.com/teal-language/vim-teal) and open a pull request on GitHub.