diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-03-04 06:04:45 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-03-04 06:04:45 +0000 |
| commit | 0b4cc60c50dde362c709053f9088f80fc894f21f (patch) | |
| tree | 90ff12af5c5b77f4e40c85b128f13b55b8e7cbe1 | |
| parent | fix(css_variable_lsp): improve default settings (#3046) (diff) | |
| download | nvim-lspconfig-0b4cc60c50dde362c709053f9088f80fc894f21f.tar nvim-lspconfig-0b4cc60c50dde362c709053f9088f80fc894f21f.tar.gz nvim-lspconfig-0b4cc60c50dde362c709053f9088f80fc894f21f.tar.bz2 nvim-lspconfig-0b4cc60c50dde362c709053f9088f80fc894f21f.tar.lz nvim-lspconfig-0b4cc60c50dde362c709053f9088f80fc894f21f.tar.xz nvim-lspconfig-0b4cc60c50dde362c709053f9088f80fc894f21f.tar.zst nvim-lspconfig-0b4cc60c50dde362c709053f9088f80fc894f21f.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 21 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 21 |
2 files changed, 42 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index c81842d5..035b7901 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -2194,6 +2194,27 @@ require'lspconfig'.css_variables.setup{} ```lua root_pattern("package.json", ".git") or bufdir ``` + - `settings` : + ```lua + cssVariables = { + lookupFiles = { '**/*.less', '**/*.scss', '**/*.sass', '**/*.css' }, + blacklistFolders = { + '**/.cache', + '**/.DS_Store', + '**/.git', + '**/.hg', + '**/.next', + '**/.svn', + '**/bower_components', + '**/CVS', + '**/dist', + '**/node_modules', + '**/tests', + '**/tmp', + }, + }, + + ``` ## cssls diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index c81842d5..035b7901 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -2194,6 +2194,27 @@ require'lspconfig'.css_variables.setup{} ```lua root_pattern("package.json", ".git") or bufdir ``` + - `settings` : + ```lua + cssVariables = { + lookupFiles = { '**/*.less', '**/*.scss', '**/*.sass', '**/*.css' }, + blacklistFolders = { + '**/.cache', + '**/.DS_Store', + '**/.git', + '**/.hg', + '**/.next', + '**/.svn', + '**/bower_components', + '**/CVS', + '**/dist', + '**/node_modules', + '**/tests', + '**/tmp', + }, + }, + + ``` ## cssls |
