feat(wip): added init

This commit is contained in:
Juliano Barbosa 2025-01-08 15:09:17 -03:00
parent 99e6a983ff
commit 1b4aad4d8d
No known key found for this signature in database
GPG Key ID: EB8B440F57360B3D
1 changed files with 22 additions and 13 deletions

View File

@ -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()