mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2025-12-22 20:21:57 +00:00
22 lines
421 B
Lua
22 lines
421 B
Lua
return {
|
|
{
|
|
"benomahony/uv.nvim",
|
|
ft = { "python" },
|
|
dependencies = {
|
|
"folke/snacks.nvim",
|
|
"nvim-telescope/telescope.nvim",
|
|
},
|
|
opts = {
|
|
picker_integration = true,
|
|
},
|
|
},
|
|
{
|
|
"stevearc/conform.nvim",
|
|
opts = {
|
|
formatters_by_ft = {
|
|
python = { "ruff" },
|
|
},
|
|
},
|
|
},
|
|
}
|