Compare commits

..

2 Commits

Author SHA1 Message Date
Jan-Bulthuis 03be992cb8 Added python formatter to VSCode 2024-12-03 13:46:59 +01:00
Jan-Bulthuis 727c0802a7 Fixed nerd font import 2024-12-03 13:46:43 +01:00
2 changed files with 3 additions and 2 deletions

View File

@ -41,11 +41,12 @@ in
ms-python.python
ms-python.debugpy
ms-python.vscode-pylance
ms-python.black-formatter
];
userSettings = {
"[python]" = {
"editor.defaultFormatter" = "ms-python.vscode-pylance";
"editor.defaultFormatter" = "ms-python.black-formatter";
};
};
};

View File

@ -2,7 +2,7 @@
{
name = "Symbols Nerd Font Mono";
package = pkgs.nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; };
package = pkgs.nerd-fonts.symbols-only;
recommendedSize = 12;
fallbackFonts = [ ];
}