Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 982 Bytes

README.md

File metadata and controls

48 lines (33 loc) · 982 Bytes

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.

Installation & Usage

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

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