diff options
| author | awy <awy@awy.one> | 2025-11-16 18:12:11 +0300 |
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-16 18:12:11 +0300 |
| commit | ad205a6812ddbcfb73c73a7e6b7a9acbb5267d53 (patch) | |
| tree | c739bcc0093648db96ea3f7d743c486691139d53 /.config/nvim/lsp/somesass_ls.lua | |
| parent | 5764990192e805fe32743dc311813ac8b396e8b2 (diff) | |
| download | mangoslice-ad205a6812ddbcfb73c73a7e6b7a9acbb5267d53.tar.gz | |
nvim
Diffstat (limited to '.config/nvim/lsp/somesass_ls.lua')
| -rw-r--r-- | .config/nvim/lsp/somesass_ls.lua | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/.config/nvim/lsp/somesass_ls.lua b/.config/nvim/lsp/somesass_ls.lua deleted file mode 100644 index 6f17952..0000000 --- a/.config/nvim/lsp/somesass_ls.lua +++ /dev/null @@ -1,30 +0,0 @@ ----@brief ---- ---- https://github.com/wkillerud/some-sass/tree/main/packages/language-server ---- ---- `some-sass-language-server` can be installed via `npm`: ---- ---- ```sh ---- npm i -g some-sass-language-server ---- ``` ---- ---- The language server provides: ---- ---- - Full support for @use and @forward, including aliases, prefixes and hiding. ---- - Workspace-wide code navigation and refactoring, such as Rename Symbol. ---- - Rich documentation through SassDoc. ---- - Language features for %placeholder-selectors, both when using them and writing them. ---- - Suggestions and hover info for built-in Sass modules, when used with @use. - ----@type vim.lsp.Config -return { - name = 'somesass_ls', - cmd = { 'some-sass-language-server', '--stdio' }, - filetypes = { 'scss', 'sass' }, - root_markers = { '.git', '.package.json' }, - settings = { - somesass = { - suggestAllFromOpenDocument = true, - }, - }, -} |