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
- Host: GitHub
- URL: https://github.com/jvalue/jayvee.nvim
- Owner: jvalue
- License: mit
- Created: 2024-04-17T08:18:40.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-08T11:28:56.000Z (about 1 year ago)
- Last Synced: 2025-04-14T10:12:57.680Z (about 1 year ago)
- Topics: neovim-plugin, neovim-plugin-lua
- Language: Vim Script
- Homepage:
- Size: 14.6 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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")
```