https://github.com/dobefu/nvim-dlitescript
A NeoVim plugin for the DLiteScript scripting language
https://github.com/dobefu/nvim-dlitescript
dlitescript lsp neovim neovim-by-the-way neovim-plugin nvim nvim-plugin tree-sitter vim
Last synced: 8 months ago
JSON representation
A NeoVim plugin for the DLiteScript scripting language
- Host: GitHub
- URL: https://github.com/dobefu/nvim-dlitescript
- Owner: Dobefu
- License: mit
- Created: 2025-08-13T14:40:54.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-09-28T11:39:07.000Z (9 months ago)
- Last Synced: 2025-10-04T23:41:21.307Z (9 months ago)
- Topics: dlitescript, lsp, neovim, neovim-by-the-way, neovim-plugin, nvim, nvim-plugin, tree-sitter, vim
- Language: Lua
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nvim-dlitescript
A NeoVim plugin that adds syntax highlighting for DLiteScript.
## Features
- **Syntax Highlighting**: Full tree-sitter based highlighting for DLiteScript files
- **File Type Detection**: Automatic detection of `.dl` files as DLiteScript files
## Requirements
- NeoVim 0.8+
- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
## Installation
### Using [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
{
'Dobefu/nvim-dlitescript',
dependencies = { 'nvim-treesitter/nvim-treesitter' },
config = function()
require('nvim-dlitescript').setup()
end,
}
```
### Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
```lua
use {
'Dobefu/nvim-dlitescript',
requires = { 'nvim-treesitter/nvim-treesitter' },
config = function()
require('nvim-dlitescript').setup()
end,
}
```