Some changes
This commit is contained in:
parent
8793835fdc
commit
7c7e281b3c
9 changed files with 141 additions and 92 deletions
7
home-manager/direnv.nix
Normal file
7
home-manager/direnv.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
programs.exa = {
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
icons = true;
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
cursorTheme = {
|
||||
name = "GoogleDot-Blue";
|
||||
package = inputs.nixpkgs-google.legacyPackages.x86_64-linux.google-cursor;
|
||||
package = pkgs.google-cursor;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -3,15 +3,17 @@
|
|||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
mkhl.direnv
|
||||
eamodio.gitlens
|
||||
usernamehw.errorlens
|
||||
timonwong.shellcheck
|
||||
usernamehw.errorlens
|
||||
kamadorueda.alejandra
|
||||
ritwickdey.liveserver
|
||||
dbaeumer.vscode-eslint
|
||||
esbenp.prettier-vscode
|
||||
oderwat.indent-rainbow
|
||||
astro-build.astro-vscode
|
||||
vscode-icons-team.vscode-icons
|
||||
pkief.material-icon-theme
|
||||
streetsidesoftware.code-spell-checker
|
||||
arcticicestudio.nord-visual-studio-code
|
||||
];
|
||||
|
@ -26,7 +28,6 @@
|
|||
}
|
||||
];
|
||||
userSettings = {
|
||||
"editor.bracketPairColorization.enabled" = true;
|
||||
"editor.guides.bracketPairs" = "active";
|
||||
"window.dialogStyle" = "custom";
|
||||
"editor.inlineSuggest.enabled" = true;
|
||||
|
@ -55,6 +56,7 @@
|
|||
"gitlens.currentLine.enabled" = false;
|
||||
"gitlens.codeLens.enabled" = false;
|
||||
"workbench.colorTheme" = "Nord";
|
||||
"workbench.iconTheme" = "material-icon-theme";
|
||||
"typescript.updateImportsOnFileMove.enabled" = "always";
|
||||
"editor.wordWrap" = "on";
|
||||
"[astro]" = {
|
||||
|
@ -65,6 +67,14 @@
|
|||
"editor.minimap.enabled" = false;
|
||||
"diffEditor.ignoreTrimWhitespace" = false;
|
||||
"editor.unicodeHighlight.nonBasicASCII" = false;
|
||||
"dart.checkForSdkUpdates" = false;
|
||||
"editor.codeActionsOnSave" = {
|
||||
"source.fixAll" = true;
|
||||
};
|
||||
"editor.bracketPairColorization.enabled" = true;
|
||||
"explorer.fileNesting.enabled" = true;
|
||||
"explorer.fileNesting.expand" = false;
|
||||
"window.zoomLevel" = 1;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue