mirror of
https://github.com/fred-drake/neovim.git
synced 2026-06-06 07:19:27 -05:00
14 lines
277 B
Nix
14 lines
277 B
Nix
{
|
|
plugins = {
|
|
conform-nvim = {
|
|
enable = true;
|
|
settings = {formatters_by_ft.python = ["black"];};
|
|
};
|
|
# lsp.servers.pylsp.enable = false;
|
|
lsp.servers.pyright = {
|
|
enable = true;
|
|
};
|
|
none-ls.sources.formatting.black.enable = true;
|
|
};
|
|
}
|