summaryrefslogtreecommitdiff
path: root/fnl/config/lsp/settings/jsonls.fnl
blob: a2cb78cc299692bbcec5c7443dcc00c5c8124006 (plain)
1
2
3
4
5
6
7
8
9
10
;; Json schema store catalog language server.
(module config.lsp.settings.jsonls {autoload {: util}})

(let [schemastore (util.load-plugin :schemastore)]
  {:init_options {:providerFormatter false}
   :settings {:json {:schemas (schemastore.json.schemas)}}
   :setup {:commands {:Format [(fn []
                                 (vim.lsp.buf.range_formatting [] [0 0]
                                                               [(vim.fn.line "$"
                                                                             0)]))]}}})