neovim

Personal neovim configuration files
git clone git://gtms.dev/neovim
Log | Files | Refs

jsonls.lua (230B)


      1 local schemas
      2 if pcall(require, 'schemastore') then
      3   schemas = require 'schemastore'.json.schemas()
      4 end
      5 
      6 return {
      7   settings = {
      8     json = {
      9       schemas = schemas,
     10       validate = {
     11         enable = true
     12       }
     13     }
     14   },
     15 }