Skip to content

Commit 6c8891a

Browse files
fix(vscode): added flutter-development profile for vscode
forgot to add this earlier
1 parent ff5f489 commit 6c8891a

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

modules/home/gui/vscode/profiles.nix

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,34 @@ in
8181
default = { };
8282
};
8383
};
84+
flutter-development = {
85+
enable = mkEnableOption "Enable Flutter Development Profile";
86+
languages = mkOption {
87+
type = enumLanguages;
88+
default = [
89+
"dart"
90+
"just"
91+
"markdown"
92+
"python"
93+
"spell"
94+
"toml"
95+
"typst"
96+
"yaml"
97+
];
98+
};
99+
extensions = mkOption {
100+
type = listOf package;
101+
default = [ ];
102+
};
103+
keybindings = mkOption {
104+
type = keybindingSubmodule;
105+
default = [ ];
106+
};
107+
userSettings = mkOption {
108+
inherit (jsonFormat) type;
109+
default = { };
110+
};
111+
};
84112
markup = {
85113
enable = mkOption {
86114
type = bool;

0 commit comments

Comments
 (0)