1
0

chore: sync work config

This commit is contained in:
2025-11-03 20:42:28 +01:00
parent eaea388f20
commit f100cffb79
7 changed files with 33 additions and 5 deletions

View File

@@ -89,9 +89,9 @@ return {
-- install rust
rust = { "rustfmt" },
-- brew install prettier
markdown = { "prettierd", "prettier" },
markdown = { "markdownlint-cli2" },
json = { "prettierd", "prettier" },
yaml = { "prettierd", "prettier" },
yaml = { "yamlfmt" },
-- install terraform
terraform = { "terraform_fmt" },
-- brew install shfmt

View File

@@ -11,6 +11,8 @@ return {
sh = { "shellcheck" },
-- brew install tflint
terraform = { "tflint" },
-- brew install markdownlint-cli2
markdown = { "markdownlint-cli2" },
-- go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.0
go = { "golangcilint" },
}

View File

@@ -192,4 +192,16 @@ return {
},
},
},
{
"MeanderingProgrammer/render-markdown.nvim",
dependencies = { "nvim-treesitter/nvim-treesitter", "nvim-tree/nvim-web-devicons" },
---@module 'render-markdown'
---@type render.md.UserConfig
opts = {},
config = function()
require("render-markdown").setup({
completions = { lsp = { enabled = true } },
})
end,
},
}