From 76f6235bcd178cc5c28cc4fbf0d09fafb1f63a9b Mon Sep 17 00:00:00 2001 From: anand Date: Sun, 5 Apr 2026 16:47:53 +0530 Subject: some changes --- nvim/lsp/css_variables.lua | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100755 nvim/lsp/css_variables.lua (limited to 'nvim/lsp/css_variables.lua') diff --git a/nvim/lsp/css_variables.lua b/nvim/lsp/css_variables.lua deleted file mode 100755 index 1ee9c2b..0000000 --- a/nvim/lsp/css_variables.lua +++ /dev/null @@ -1,37 +0,0 @@ ----@brief ---- ---- 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 ---- ``` -return { - cmd = { 'css-variables-language-server', '--stdio' }, - filetypes = { 'css', 'scss', 'less' }, - root_markers = { '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', - }, - }, - }, -} -- cgit v1.2.3