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