Format plugin configurations

This commit is contained in:
2025-04-18 13:59:06 -07:00
parent 02cba114d8
commit c1e0902f60
5 changed files with 27 additions and 23 deletions

View File

@ -36,13 +36,17 @@ return {
["<C-e>"] = {},
-- show with a list of providers
["<C-space>"] = { function(cmp) cmp.show({ providers = { "snippets" } }) end },
["<C-space>"] = {
function(cmp)
cmp.show({ providers = { "snippets" } })
end,
},
},
appearance = {
-- "mono" (default) for "Nerd Font Mono" or "normal" for "Nerd Font"
-- Adjusts spacing to ensure icons are aligned
nerd_font_variant = "mono"
nerd_font_variant = "mono",
},
-- (Default) Only show the documentation popup when manually triggered
@ -59,8 +63,8 @@ return {
-- when the Rust fuzzy matcher is not available, by using `implementation = "prefer_rust"`
--
-- See the fuzzy documentation for more information
fuzzy = { implementation = "prefer_rust_with_warning" }
fuzzy = { implementation = "prefer_rust_with_warning" },
},
opts_extend = { "sources.default" },
},
opts_extend = { "sources.default" }
}
}

View File

@ -7,8 +7,8 @@ return {
require("conform").setup({
formatters_by_ft = {
json = { "prettier" },
lua = { "stylua" }
}
lua = { "stylua" },
},
})
end,
},

View File

@ -12,8 +12,8 @@ return {
enable = true,
min_length = 3,
hl = { underline = true },
}
})
},
})
end,
},
}

View File

@ -5,6 +5,6 @@ return {
require("indentmini").setup()
vim.cmd.highlight("IndentLine guifg=#444444") -- Set indent line color
end
}
end,
},
}

View File

@ -1,8 +1,8 @@
return {
{
"nvim-treesitter/nvim-treesitter"
"nvim-treesitter/nvim-treesitter",
},
{
"windwp/nvim-ts-autotag"
}
"windwp/nvim-ts-autotag",
},
}