Features:
- Associates the
.jv
extension with thejayvee
filetype - Enables very basyic vim syntax highlighting for jayvee files
- Configures the jayvee-language-server using nvim-lspconfig
This plugin does NOT:
- provide the language-server itself
- provide treesitter based highlighting
{
'jvalue/jayvee.nvim',
dependencies = {
'neovim/nvim-lspconfig',
},
main = 'jayvee',
init = function(_)
vim.filetype.add { extension = { jv = 'jayvee' } }
end,
ft = 'jayvee',
opts = {
-- standard nvim-lspconfig options
},
},
MiniDeps.add({
source = "jvalue/jayvee.nvim",
depends = { "neovim/nvim-lspconfig" },
})
require("jayvee").setup({
-- standard nvim-lspconfig options
})