minor
This commit is contained in:
parent
dad29df8b7
commit
eb8de3fbeb
1 changed files with 6 additions and 4 deletions
|
|
@ -20,6 +20,8 @@ let
|
||||||
|
|
||||||
"workbench.colorTheme" = "Gruvbox Dark Hard";
|
"workbench.colorTheme" = "Gruvbox Dark Hard";
|
||||||
|
|
||||||
|
"git.openRepositoryInParentFolders" = "never";
|
||||||
|
|
||||||
"vim.leader" = "<space>";
|
"vim.leader" = "<space>";
|
||||||
"vim.useSystemClipboard" = true;
|
"vim.useSystemClipboard" = true;
|
||||||
"vim.normalModeKeyBindingsNonRecursive" = [
|
"vim.normalModeKeyBindingsNonRecursive" = [
|
||||||
|
|
@ -50,10 +52,10 @@ in
|
||||||
|
|
||||||
home.activation.installCursorExtensions = config.lib.dag.entryAfter ["writeBoundary"] ''
|
home.activation.installCursorExtensions = config.lib.dag.entryAfter ["writeBoundary"] ''
|
||||||
if command -v ${cursorCmd} &> /dev/null; then
|
if command -v ${cursorCmd} &> /dev/null; then
|
||||||
run ${cursorCmd} --install-extension vscodevim.vim 2>/dev/null || true
|
run ${cursorCmd} --install-extension vscodevim.vim &> /dev/null || true
|
||||||
run ${cursorCmd} --install-extension jdinhlife.gruvbox 2>/dev/null || true
|
run ${cursorCmd} --install-extension jdinhlife.gruvbox &> /dev/null || true
|
||||||
run ${cursorCmd} --install-extension jnoortheen.nix-ide 2>/dev/null || true
|
run ${cursorCmd} --install-extension jnoortheen.nix-ide &> /dev/null || true
|
||||||
run ${cursorCmd} --install-extension tomoki1207.pdf 2>/dev/null || true
|
run ${cursorCmd} --install-extension tomoki1207.pdf &> /dev/null || true
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue