Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 1.1 KB

README.md

File metadata and controls

53 lines (41 loc) · 1.1 KB

geckscript.nvim

lsp-config setup for geckscript-lsp and language highlighting for geckscript for Neovim

Installation

Requires lsp-config

You can install the language server via npm

npm i -g geckscript-lsp
{
    "WarZone762/geckscript.nvim",
    config = function()
        require("geckscript").setup({
            -- configuration is passed directly to lsp-config
        })
    end,
}
use {
    "WarZone762/geckscript.nvim",
    config = function()
        require("geckscript").setup({
            -- configuration is passed directly to lsp-config
        })
    end,
}

Configuration

If you do not have geckscript-lsp in you PATH, make sure you point cmd to the location of your geckscript-lsp

require("geckscript").setup({
    ...
    cmd = { "/path/to/your/geckscript-lsp.js" }
    ...
})