2022-02-07 00:00:20 +01:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
|
|
|
|
programs.vscode = {
|
2022-02-07 00:01:27 +01:00
|
|
|
enable = true;
|
|
|
|
extensions = with pkgs.vscode-extensions; [
|
2022-02-07 18:11:50 +01:00
|
|
|
# Dark Theme
|
2022-02-07 00:01:27 +01:00
|
|
|
dracula-theme.theme-dracula
|
2022-02-07 18:11:50 +01:00
|
|
|
|
|
|
|
# Terraform and HCL support
|
|
|
|
hashicorp.terraform
|
2022-02-23 23:42:42 +01:00
|
|
|
|
2022-02-07 18:11:50 +01:00
|
|
|
# Python
|
|
|
|
ms-python.python
|
|
|
|
|
|
|
|
# Vim
|
2022-02-07 00:01:27 +01:00
|
|
|
vscodevim.vim
|
2022-02-07 18:11:50 +01:00
|
|
|
|
|
|
|
# Markdown highlighting/formatting/preview
|
2022-02-07 00:01:27 +01:00
|
|
|
yzhang.markdown-all-in-one
|
|
|
|
];
|
|
|
|
};
|
2022-02-07 00:00:20 +01:00
|
|
|
}
|