old
1{pkgs, ...}:
2with pkgs.vscode-extensions;
3 [
4 # Translation
5 ms-ceintl.vscode-language-pack-zh-hans
6 w88975.code-translate
7
8 # Appearance
9 pkief.material-icon-theme
10 catppuccin.catppuccin-vsc
11
12 # Utils
13 mhutchie.git-graph
14 christian-kohler.path-intellisense
15 usernamehw.errorlens
16 shardulm94.trailing-spaces
17 gruntfuggly.todo-tree
18 editorconfig.editorconfig
19
20 # LLM
21 github.copilot
22 github.copilot-chat
23 rooveterinaryinc.roo-cline
24
25 # Nix
26 jnoortheen.nix-ide
27
28 # # Nushell
29 # thenuprojectcontributors.vscode-nushell-lang
30
31 # Configuration languages
32 tamasfe.even-better-toml
33 redhat.vscode-yaml
34 ]
35 ++ (pkgs.vscode-utils.extensionsFromVscodeMarketplace [
36 # {
37 # name = "git-commit-plugin";
38 # publisher = "redjue";
39 # version = "1.5.0";
40 # sha256 = "fOdeUuB4jFL0LvGsLcjz5EQslD8jRRGslbumMo3cZCs=";
41 # }
42 {
43 name = "aw-watcher-vscode";
44 publisher = "activitywatch";
45 version = "0.5.0";
46 sha256 = "OrdIhgNXpEbLXYVJAx/jpt2c6Qa5jf8FNxqrbu5FfFs=";
47 }
48 {
49 name = "jjk";
50 publisher = "jjk";
51 version = "0.8.1";
52 sha256 = "2JUn6wkWgZKZzhitQy6v9R/rCNLrt7DBtt59707hp6c=";
53 }
54 ])