An open API service indexing awesome lists of open source software.

https://github.com/jvalue/jayvee.nvim

Neovim plugin adding support for the jayvee language server
https://github.com/jvalue/jayvee.nvim

neovim-plugin neovim-plugin-lua

Last synced: about 1 year ago
JSON representation

Neovim plugin adding support for the jayvee language server

Awesome Lists containing this project

README

          

# Jayvee.nvim
Features:
- Associates the `.jv` extension with the `jayvee` filetype
- Enables very basyic vim syntax highlighting for jayvee files
- Configures the jayvee-language-server

## Requirements
- neovim >= 0.11

> [!IMPORTANT]
> In addition to this plugin, you also have to install the language server.
> The most convenient way for that is [mason.nvim](https://github.com/williamboman/mason.nvim).

## Installation & Usage

lazy.nvim

### [lazy.nvim](https://github.com/folke/lazy.nvim)

```lua
{
'jvalue/jayvee.nvim',
config = function()
-- See `:help lsp-config` if you require a custom configuration
vim.lsp.enable("jayvee_ls")
end
},
```

mini.deps

### [mini.deps](https://github.com/echasnovski/mini.deps)
```lua
MiniDeps.add("jvalue/jayvee.nvim")

-- See `:help lsp-config` if you require a custom configuration
vim.lsp.enable("jayvee_ls")
```