Skip to content

Neovim plugin adding support for the jayvee language server

License

Notifications You must be signed in to change notification settings

jvalue/jayvee.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Neovim plugin adding support for the jayvee language server

Topics

Resources

License

Stars

Watchers

Forks