feat(nixvim): Add mdformat
This commit is contained in:
parent
2d9b40b809
commit
3bff0ca1d2
1 changed files with 6 additions and 1 deletions
|
@ -1,10 +1,15 @@
|
|||
{ ... }: {
|
||||
{ pkgs, ... }: {
|
||||
programs.nixvim.plugins.none-ls = {
|
||||
enable = true;
|
||||
sources = {
|
||||
formatting = {
|
||||
black.enable = true;
|
||||
dart_format.enable = true;
|
||||
mdformat = {
|
||||
enable = true;
|
||||
package = pkgs.mdformat.withPlugins
|
||||
(packages: with packages; [ mdformat-tables ]);
|
||||
};
|
||||
nixfmt.enable = true;
|
||||
xmllint.enable = true;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue