This commit is contained in:
juanito87 2025-07-12 19:11:22 -03:00
parent f35803ef0b
commit b61a68c02f
No known key found for this signature in database
GPG Key ID: EAB042894FD44AFD
2 changed files with 9 additions and 3 deletions

View File

@ -43,7 +43,7 @@ return { -- Autoformat
terraform = { 'terraform_fmt' },
ansible = { 'ansible-lint' },
hcl = { 'hcl' },
markdown = { 'markdownfmt', 'markdownlint' },
markdown = { 'markdownlint' },
-- You can use a sub-list to tell conform to run *until* a formatter
-- is found.
},

View File

@ -258,6 +258,12 @@ return {
local ensure_installed = vim.tbl_keys(servers or {})
vim.list_extend(ensure_installed, {
'stylua', -- Used to format Lua code
'rustfmt', -- Rust formatter
'prettier', -- JS/MD formatter
'black', -- Python formatter
'isort',
'shellcheck',
'markdownlint',
})
require('mason-tool-installer').setup { ensure_installed = ensure_installed }
@ -372,7 +378,7 @@ return {
-- the rust implementation via `'prefer_rust_with_warning'`
--
-- See :h blink-cmp-config-fuzzy for more information
fuzzy = { implementation = 'lua' },
fuzzy = { implementation = 'prefer_rust_with_warning' },
-- Shows a signature help window while you type arguments for a function
signature = { enabled = true },