diff options
| author | Chris <[email protected]> | 2021-08-02 15:04:10 -0400 | 
|---|---|---|
| committer | Chris <[email protected]> | 2021-08-02 15:04:10 -0400 | 
| commit | e0f0c81ea6f595139cd4f55fbdcf9e22d9a84727 (patch) | |
| tree | dc23c79642f991216b8f23315f85ad361c2f3910 | |
| parent | c2ef6f43e25b419955e0235f5fa1dbf1da161bbc (diff) | |
less needs something defined for formatters and linters
| -rw-r--r-- | lua/default-config.lua | 23 | 
1 files changed, 23 insertions, 0 deletions
| diff --git a/lua/default-config.lua b/lua/default-config.lua index 9d1bb44e..e7d0bfa7 100644 --- a/lua/default-config.lua +++ b/lua/default-config.lua @@ -301,6 +301,29 @@ lvim.lang = {        },      },    }, +  less = { +    formatters = { +      { +        -- @usage can be prettier or prettierd +        exe = "", +        args = {}, +      }, +    }, +    linters = {}, +    lsp = { +      provider = "cssls", +      setup = { +        cmd = { +          "node", +          DATA_PATH .. "/lspinstall/css/vscode-css/css-language-features/server/dist/node/cssServerMain.js", +          "--stdio", +        }, +        on_attach = common_on_attach, +        on_init = common_on_init, +        capabilities = common_capabilities, +      }, +    }, +  },    d = {      formatters = {        { | 
