UPD
This commit is contained in:
parent
f35803ef0b
commit
b61a68c02f
|
|
@ -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.
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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 },
|
||||
|
|
|
|||
Loading…
Reference in New Issue