From 7f0f862b1f0b8787501dbb94e882213165c3fbd8 Mon Sep 17 00:00:00 2001 From: dlsaldanas Date: Tue, 16 Dec 2025 12:10:46 -0300 Subject: [PATCH] latest --- lua/kickstart/plugins/conform.lua | 2 +- lua/kickstart/plugins/lspconfig.lua | 25 +++++++++++++++++++------ 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/lua/kickstart/plugins/conform.lua b/lua/kickstart/plugins/conform.lua index 678d6036..6b883334 100644 --- a/lua/kickstart/plugins/conform.lua +++ b/lua/kickstart/plugins/conform.lua @@ -20,7 +20,7 @@ return { -- have a well standardized coding style. You can add additional -- languages here or re-enable it for the disabled ones. print('aa', vim.bo[bufnr].filetype) - local disable_filetypes = { c = true, cpp = true, javascript = true, typescript = true, javascriptreact = true, typescriptreact = true } + local disable_filetypes = { c = true, cpp = true, javascript = true, typescript = true, javascriptreact = true, typescriptreact = true, css = true } if disable_filetypes[vim.bo[bufnr].filetype] then return nil else diff --git a/lua/kickstart/plugins/lspconfig.lua b/lua/kickstart/plugins/lspconfig.lua index 1bb01b91..35df6132 100644 --- a/lua/kickstart/plugins/lspconfig.lua +++ b/lua/kickstart/plugins/lspconfig.lua @@ -208,17 +208,29 @@ return { -- - settings (table): Override the default settings passed when initializing the server. -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/ local servers = { + biome = {}, clangd = {}, helm_ls = {}, - jsonls = { - init_options = { - provideFormatter = true, - }, - }, + -- this is extracted from vscode i cant find a way to deactivete the format on save + -- jsonls = { + -- capabilities = { + -- init_options = { + -- provideFormatter = false, + -- }, + -- }, + -- }, cssls = {}, eslint = {}, bashls = {}, - vtsls = {}, + -- deno = {}, + vtsls = { + javascript = { + preferences = { + importModuleSpecifier = 'relative', + jsxAttributeCompletionStyle = 'auto', + }, + }, + }, nginx_language_server = {}, gitlab_ci_ls = {}, lua_ls = { @@ -235,6 +247,7 @@ return { }, }, }, + dockerls = {}, } -- Ensure the servers and tools above are installed