added toml extension

This commit is contained in:
Kristian Krsnik 2023-08-17 20:38:46 +02:00
parent b837759de8
commit cf36d2b6dd

View File

@ -21,6 +21,7 @@
james-yu.latex-workshop
github.copilot
davidanson.vscode-markdownlint
tamasfe.even-better-toml
];
userSettings = {
"window.menuBarVisibility" = "hidden";
@ -36,6 +37,10 @@
"editor.formatOnSave" = true;
"editor.formatOnSaveMode" = "file"; # modificationsIfAvailable does not work
};
"[toml]" = {
"editor.formatOnSave" = true;
"editor.modificationsIfAvailable" = "file";
};
"python.formatting.autopep8Path" = "${pkgs.python311Packages.autopep8}/bin/autopep8";
"nix.enableLanguageServer" = true;
"nix.serverPath" = "${pkgs.nil}/bin/nil";