Skip to content

Latest commit

 

History

History
38 lines (35 loc) · 953 Bytes

README.md

File metadata and controls

38 lines (35 loc) · 953 Bytes

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

This plugin does NOT:

  • provide the language-server itself
  • provide treesitter based highlighting

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