Add CUE support (syntax and LSP integration)
This commit is contained in:
parent
0591df1423
commit
879b82105c
2 changed files with 13 additions and 0 deletions
|
@ -12,6 +12,14 @@ const lspServers = [
|
|||
install: 'brew install clojure-lsp/brew/clojure-lsp-native',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'cue-lsp',
|
||||
filetype: 'cue',
|
||||
path: '/usr/local/bin/cue',
|
||||
args: ['lsp'],
|
||||
install: 'brew install cue-lang/tap/cue',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'dockerfile-langserver',
|
||||
filetype: 'dockerfile',
|
||||
|
|
|
@ -157,6 +157,11 @@ minpac#add('lambdalisue/fern-ssh')
|
|||
# vim-endwise for XML. Very nice to have when working on HTML documents.
|
||||
minpac#add('alvan/vim-closetag')
|
||||
|
||||
# Support for the CUE data language. CUE also provides an LSP, which Vim's
|
||||
# configured to use, so this plugin is mostly relevant for syntax
|
||||
# highlighting.
|
||||
minpac#add('jjo/vim-cue')
|
||||
|
||||
# Hurlfile syntax from its official repository.
|
||||
minpac#add('Orange-OpenSource/hurl', {subdir: 'contrib/vim'})
|
||||
|
||||
|
|
Loading…
Reference in a new issue