1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-11 02:55:48 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/css_variables.lua

66 lines
1.7 KiB
Lua
Raw Normal View History

local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'css-variables-language-server', '--stdio' },
filetypes = { 'css', 'scss', 'less' },
root_dir = util.root_pattern('package.json', '.git'),
-- Same as inlined defaults that don't seem to work without hardcoding them in the lua config
-- https://github.com/vunguyentuan/vscode-css-variables/blob/763a564df763f17aceb5f3d6070e0b444a2f47ff/packages/css-variables-language-server/src/CSSVariableManager.ts#L31-L50
settings = {
cssVariables = {
lookupFiles = { '**/*.less', '**/*.scss', '**/*.sass', '**/*.css' },
blacklistFolders = {
'**/.cache',
'**/.DS_Store',
'**/.git',
'**/.hg',
'**/.next',
'**/.svn',
'**/bower_components',
'**/CVS',
'**/dist',
'**/node_modules',
'**/tests',
'**/tmp',
},
},
},
},
docs = {
description = [[
https://github.com/vunguyentuan/vscode-css-variables/tree/master/packages/css-variables-language-server
CSS variables autocompletion and go-to-definition
`css-variables-language-server` can be installed via `npm`:
```sh
npm i -g css-variables-language-server
```
]],
default_config = {
root_dir = [[root_pattern("package.json", ".git") or bufdir]],
settings = [[
cssVariables = {
lookupFiles = { '**/*.less', '**/*.scss', '**/*.sass', '**/*.css' },
blacklistFolders = {
'**/.cache',
'**/.DS_Store',
'**/.git',
'**/.hg',
'**/.next',
'**/.svn',
'**/bower_components',
'**/CVS',
'**/dist',
'**/node_modules',
'**/tests',
'**/tmp',
},
},
]],
},
},
}