Updated theming

This commit is contained in:
2025-06-24 11:01:30 -03:00
parent 422ca50e45
commit 20977180da
6 changed files with 124 additions and 128 deletions

View File

@@ -55,6 +55,9 @@
## SVG
"jock.svg"
## YAML
"redhat.vscode-yaml"
];
# Settings
userSettings = {
@@ -63,6 +66,11 @@
"continue.enableTabAutocomplete" = true;
"window.menuBarVisibility" = "toggle";
"window.commandCenter" = false;
"window.titleBarStyle" = "native";
"workbench.navigationControl.enabled" = false;
"workbench.layoutControl.enabled" = false;
#"github.copilot.editor.enableAutoCompletions" = true;
"redhat.telemetry.enabled" = false;
};

View File

@@ -1,16 +0,0 @@
{ pkgs, ... }:
{
# TODO add ttf-font-awesome or font-awesome for waybar
fontProfiles = {
enable = true;
monospace = {
family = "FiraCode Nerd Font";
package = pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; };
};
regular = {
family = "Fira Sans";
package = pkgs.fira;
};
};
}