fix: depreciated options

This commit is contained in:
tux
2025-03-03 14:24:20 +05:30
parent a316ca1c6b
commit 37ade4d0e2
3 changed files with 66 additions and 64 deletions

View File

@ -58,7 +58,7 @@
user_pref("media.rdd-vpx.enabled", true); user_pref("media.rdd-vpx.enabled", true);
''; '';
extensions = with pkgs.nur.repos.rycee.firefox-addons; [ extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin ublock-origin
facebook-container facebook-container
metamask metamask

View File

@ -31,7 +31,7 @@
user_pref("media.rdd-vpx.enabled", true); user_pref("media.rdd-vpx.enabled", true);
''; '';
extensions = with pkgs.nur.repos.rycee.firefox-addons; [ extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin ublock-origin
facebook-container facebook-container
metamask metamask

View File

@ -3,72 +3,74 @@
enable = true; enable = true;
package = pkgs.vscodium; package = pkgs.vscodium;
keybindings = [ profiles.default = {
{ keybindings = [
"key" = "f7"; {
"command" = "-editor.action.wordHighlight.next"; "key" = "f7";
"when" = "editorTextFocus && hasWordHighlights"; "command" = "-editor.action.wordHighlight.next";
} "when" = "editorTextFocus && hasWordHighlights";
{ }
"key" = "f7"; {
"command" = "-editor.action.accessibleDiffViewer.next"; "key" = "f7";
"when" = "isInDiffEditor"; "command" = "-editor.action.accessibleDiffViewer.next";
} "when" = "isInDiffEditor";
{ }
"key" = "f7"; {
"command" = "workbench.action.terminal.toggleTerminal"; "key" = "f7";
"when" = "terminal.active"; "command" = "workbench.action.terminal.toggleTerminal";
} "when" = "terminal.active";
{ }
"key" = "ctrl+`"; {
"command" = "-workbench.action.terminal.toggleTerminal"; "key" = "ctrl+`";
"when" = "terminal.active"; "command" = "-workbench.action.terminal.toggleTerminal";
} "when" = "terminal.active";
]; }
];
userSettings = { userSettings = {
"window.zoomLevel" = 2; "window.zoomLevel" = 2;
"window.menuBarVisibility" = "toggle"; "window.menuBarVisibility" = "toggle";
"workbench.colorTheme" = "Poimandres Alternate"; "workbench.colorTheme" = "Poimandres Alternate";
"workbench.startupEditor" = "none"; "workbench.startupEditor" = "none";
"editor.fontFamily" = "FiraCode NF, FiraCode Nerd Font"; "editor.fontFamily" = "FiraCode NF, FiraCode Nerd Font";
"editor.fontLigatures" = true; "editor.fontLigatures" = true;
"editor.cursorBlinking" = "smooth"; "editor.cursorBlinking" = "smooth";
"editor.minimap.enabled" = false; "editor.minimap.enabled" = false;
"terminal.integrated.fontFamily" = "FiraCode NF, FiraCode Nerd Font , FiraCode"; "terminal.integrated.fontFamily" = "FiraCode NF, FiraCode Nerd Font , FiraCode";
};
extensions =
(with pkgs.vscode-extensions; [
wakatime.vscode-wakatime
ms-dotnettools.csharp
naumovs.color-highlight
ms-vscode-remote.remote-containers
ms-azuretools.vscode-docker
mikestead.dotenv
golang.go
wix.vscode-import-cost
sumneko.lua
yzhang.markdown-all-in-one
jnoortheen.nix-ide
esbenp.prettier-vscode
prisma.prisma
ms-python.python
ms-vscode-remote.remote-ssh
humao.rest-client
bradlc.vscode-tailwindcss
gruntfuggly.todo-tree
])
++ (with pkgs.vscode-marketplace; [
danielpriestley.poimandres-alternate
pufferbommy.pretty-poimandres
yoavbls.pretty-ts-errors
formulahendry.auto-rename-tag
chakrounanas.turbo-console-log
streetsidesoftware.code-spell-checker
]);
}; };
extensions =
(with pkgs.vscode-extensions; [
wakatime.vscode-wakatime
ms-dotnettools.csharp
naumovs.color-highlight
ms-vscode-remote.remote-containers
ms-azuretools.vscode-docker
mikestead.dotenv
golang.go
wix.vscode-import-cost
sumneko.lua
yzhang.markdown-all-in-one
jnoortheen.nix-ide
esbenp.prettier-vscode
prisma.prisma
ms-python.python
ms-vscode-remote.remote-ssh
humao.rest-client
bradlc.vscode-tailwindcss
gruntfuggly.todo-tree
])
++ (with pkgs.vscode-marketplace; [
danielpriestley.poimandres-alternate
pufferbommy.pretty-poimandres
yoavbls.pretty-ts-errors
formulahendry.auto-rename-tag
chakrounanas.turbo-console-log
streetsidesoftware.code-spell-checker
]);
}; };
} }