Skip to content

vito/dang.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dang.nvim

Neovim plugin for the Dang language, providing Tree-sitter highlighting and LSP support.

Requirements

Installation

lazy.nvim

{
  "https://github.com/vito/dang.nvim",
  dependencies = { "nvim-treesitter/nvim-treesitter" },
  config = function()
    require("dang").setup()
  end,
}

Manual

Clone into your Neovim packages directory and call require("dang").setup().

What it does

  • Registers the dang filetype for *.dang files
  • Installs the Tree-sitter grammar and queries (highlights, folds, indents, locals)
  • Starts the Dang LSP (dang --lsp) automatically for .dang files

Configuration

require("dang").setup({
  lsp = true, -- set to false to disable LSP
})

About

Dang language support for Neovim

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors