Add vim-stye relative lines in VSCodium

This commit is contained in:
Joshua Yuen 2026-06-21 00:02:32 -04:00
parent 874f06b331
commit e16d0e5d11
Signed by: josh
GPG Key ID: 530DA0331EFE99F5
1 changed files with 27 additions and 20 deletions

View File

@ -6,25 +6,32 @@
programs.vscode = { programs.vscode = {
enable = true; enable = true;
package = pkgs.vscodium; package = pkgs.vscodium;
profiles.default.extensions = profiles.default = {
with pkgs.vscode-extensions; extensions =
with pkgs.vscode-marketplace; with pkgs.vscode-extensions;
[ with pkgs.vscode-marketplace;
amazonwebservices.aws-toolkit-vscode [
arrterian.nix-env-selector amazonwebservices.aws-toolkit-vscode
christian-kohler.path-intellisense arrterian.nix-env-selector
eamodio.gitlens christian-kohler.path-intellisense
esbenp.prettier-vscode eamodio.gitlens
jnoortheen.nix-ide esbenp.prettier-vscode
leonardssh.vscord jnoortheen.nix-ide
mkhl.direnv leonardssh.vscord
ms-python.debugpy mkhl.direnv
ms-python.python ms-python.debugpy
opentofu.vscode-opentofu ms-python.python
redhat.ansible opentofu.vscode-opentofu
redhat.vscode-yaml redhat.ansible
rvest.vs-code-prettier-eslint redhat.vscode-yaml
vscodevim.vim rvest.vs-code-prettier-eslint
]; vscodevim.vim
];
userSettings = {
"editor.stickyScroll.maxLineCount" = 10;
"vim.smartRelativeLine" = true;
};
};
}; };
} }