Skip to content

Latest commit

 

History

History
42 lines (38 loc) · 1.17 KB

README.md

File metadata and controls

42 lines (38 loc) · 1.17 KB

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 using nvim-lspconfig

Important

In addition to this plugin, you also have to install the language server. The most convenient way for that is mason.nvim.

Tip

If you use the neovim nightly, you may want to look at the nightly branch instead.

Installation

  {
    '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
  })