my nixos config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

vscodium settings

chfour 1bc777cc 34c742e2

+6 -16
+6 -16
users/chfour/home.nix
··· 49 49 extensions = with pkgs.vscode-extensions; [ 50 50 pkief.material-icon-theme 51 51 jnoortheen.nix-ide 52 - ms-python.python # DEBUGPY WHY MUST YOU BE SO *STUPID* (sometimes) 52 + ms-python.python 53 53 #ms-vscode.cpptools # :troll: 54 54 llvm-vs-code-extensions.vscode-clangd 55 - #] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [ 56 - # { 57 - # name = "platformio-ide"; 58 - # publisher = "platformio"; 59 - # version = "3.3.1"; 60 - # sha256 = "sha256-fIQCG3S5CnqoZFAlwbDG740Z/nIFMQRAYY5/LnRNMSo="; 61 - # } 55 + vadimcn.vscode-lldb 56 + ms-vscode.cmake-tools 57 + arrterian.nix-env-selector 62 58 ]; 63 59 64 60 userSettings = { 65 61 "editor.fontFamily" = "\'Terminus (TTF)\', \'Droid Sans Mono\', \'monospace\', monospace"; 66 62 "editor.fontSize" = 16; 63 + "editor.minimap.enabled" = false; 67 64 "workbench.colorTheme" = "Monokai"; 68 65 "workbench.iconTheme" = "material-icon-theme"; 69 66 "files.eol" = "\n"; 70 67 "editor.cursorBlinking" = "phase"; 71 68 "clangd.path" = (lib.getOutput "bin" pkgs.clang-tools.overrideAttrs (old: { clang = pkgs.clang_multi; })) + "/bin/clangd"; # i guess? 72 - #"clangd.arguments" = [ "-I${lib.getOutput "bin" pkgs.pkgsi686Linux.gcc-unwrapped}/include/" ]; # no worky i thought it would 73 - #"platformio-ide.customPATH" = lib.makeBinPath (with pkgs; [ python311.withPackages (p: with p; [ platformio-core ]) platformio ]); 74 - #"platformio-ide.useBuiltinPIOCore" = false; 75 - #"platformio-ide.useBuiltinPython" = false; 76 - #"platformio-ide.pioHomeServerHttpPort" = 8008; 77 - #"C_Cpp.intelliSenseEngine" = "disabled"; 78 - #"C_Cpp.default.compilerPath" = (lib.getOutput "bin" pkgs.clang_16) + "/bin/clang"; 79 - # yea so all that didnt work 69 + "cmake.configureOnOpen" = false; 80 70 }; 81 71 }; 82 72