chore: reformat using nixd and nixfmt-rfc-style
This commit is contained in:
parent
1ea540535e
commit
813cc599f0
38 changed files with 280 additions and 166 deletions
|
|
@ -1,8 +1,10 @@
|
|||
{ pkgs, ... }: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
#The VSCoderrrrrrrr
|
||||
#codepilled nixmaxxer
|
||||
#god I love tumblr
|
||||
#tumblrpilled mememaxxer
|
||||
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
|
|
@ -10,29 +12,40 @@
|
|||
enableExtensionUpdateCheck = false;
|
||||
mutableExtensionsDir = false;
|
||||
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
ms-vscode.cpptools
|
||||
ms-vscode.live-server
|
||||
mhutchie.git-graph
|
||||
pkief.material-icon-theme
|
||||
pkief.material-product-icons
|
||||
oderwat.indent-rainbow
|
||||
bierner.markdown-emoji
|
||||
bierner.emojisense
|
||||
jnoortheen.nix-ide
|
||||
rust-lang.rust-analyzer
|
||||
biomejs.biome
|
||||
] ++ (with pkgs.open-vsx; [
|
||||
jeanp413.open-remote-ssh
|
||||
antfu.unocss
|
||||
]);
|
||||
extensions =
|
||||
with pkgs.vscode-extensions;
|
||||
[
|
||||
ms-vscode.cpptools
|
||||
ms-vscode.live-server
|
||||
mhutchie.git-graph
|
||||
pkief.material-icon-theme
|
||||
pkief.material-product-icons
|
||||
oderwat.indent-rainbow
|
||||
bierner.markdown-emoji
|
||||
bierner.emojisense
|
||||
jnoortheen.nix-ide
|
||||
rust-lang.rust-analyzer
|
||||
biomejs.biome
|
||||
]
|
||||
++ (with pkgs.open-vsx; [
|
||||
jeanp413.open-remote-ssh
|
||||
antfu.unocss
|
||||
]);
|
||||
|
||||
userSettings = {
|
||||
"workbench.iconTheme" = "material-icon-theme";
|
||||
"workbench.productIconTheme" = "material-product-icons";
|
||||
|
||||
"terminal.integrated.fontFamily" = "FiraCode Nerd Font";
|
||||
"terminal.integrated.fontSize" = 14;
|
||||
"terminal.integrated.fontWeight" = 500;
|
||||
"editor.fontFamily" = "FiraCode Nerd Font Mono";
|
||||
"editor.fontLigatures" = true;
|
||||
|
||||
"editor.formatOnSave" = true;
|
||||
"workbench.sideBar.location" = "right";
|
||||
"workbench.startupEditor" = "welcomePageInEmptyWorkbench";
|
||||
|
||||
"nix.enableLanguageServer" = true;
|
||||
"nix.serverPath" = "nixd";
|
||||
"nix.serverSettings" = {
|
||||
|
|
@ -44,11 +57,6 @@
|
|||
};
|
||||
|
||||
"C_Cpp.clang_format_fallbackStyle" = "LLVM";
|
||||
"editor.fontFamily" = "FiraCode Nerd Font Mono";
|
||||
"editor.fontLigatures" = true;
|
||||
"terminal.integrated.fontFamily" = "FiraCode Nerd Font";
|
||||
"terminal.integrated.fontSize" = 14;
|
||||
"terminal.integrated.fontWeight" = 500;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue