From 1b4aad4d8d20e363eb03a310d89786932a4fed97 Mon Sep 17 00:00:00 2001 From: Juliano Barbosa Date: Wed, 8 Jan 2025 15:09:17 -0300 Subject: [PATCH] feat(wip): added init --- init.lua | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/init.lua b/init.lua index efe21005..d5cd126e 100644 --- a/init.lua +++ b/init.lua @@ -656,7 +656,10 @@ require('lazy').setup({ -- azure_pipelines_ls azure_pipelines_ls = { - filetypes = { 'yml', 'yaml.azure-pipelines' }, + filetypes = { + 'yml', + 'yaml.azure-pipelines', + }, settings = { azurePipelines = { schema = { @@ -676,6 +679,23 @@ require('lazy').setup({ }, }, + -- dockerls + dockerls = { + filetypes = { 'Dockerfile', 'dockerfile' }, + settings = { + docker = { + dockerfile = { + lint = { + rules = { + 'DL3000', + 'DL3003', + 'DL4000', + }, + }, + }, + }, + }, + }, -- clangd = {}, gopls = { gofumpt = true, @@ -766,17 +786,6 @@ require('lazy').setup({ }, }, - azure_pipelines_ls = { - schemas = { - ['https://raw.githubusercontent.com/microsoft/azure-pipelines-vscode/master/service-schema.json'] = { - '/azure-pipeline*.y*l', - '/*.azure*', - 'Azure-Pipelines/**/*.y*l', - 'Pipelines/*.y*l', - }, - }, - }, - yamlls = { schemas = { ['https://raw.githubusercontent.com/instrumenta/kubernetes-json-schema/master/v1.18.0-standalone-strict/all.json'] = '/*.k8s.yaml', @@ -1045,7 +1054,7 @@ require('lazy').setup({ -- Highlight todo, notes, etc in comments { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } }, - + { 'echasnovski/mini.surround', branch = 'stable', opts = { search_method = 'cover_or_next' } }, { -- Collection of various small independent plugins/modules 'echasnovski/mini.nvim', config = function()