Compare commits
2 Commits
c2339252e3
...
004756d9ae
Author | SHA1 | Date | |
---|---|---|---|
004756d9ae
|
|||
4dd8bb85c7
|
@@ -3,30 +3,61 @@
|
|||||||
{
|
{
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
profiles.default.extensions = with pkgs.vscode-extensions; [
|
profiles.default = {
|
||||||
|
extensions = with pkgs.vscode-extensions; [
|
||||||
catppuccin.catppuccin-vsc
|
catppuccin.catppuccin-vsc
|
||||||
catppuccin.catppuccin-vsc-icons
|
catppuccin.catppuccin-vsc-icons
|
||||||
|
|
||||||
jnoortheen.nix-ide
|
|
||||||
mhutchie.git-graph
|
mhutchie.git-graph
|
||||||
donjayamanne.githistory
|
donjayamanne.githistory
|
||||||
eamodio.gitlens
|
eamodio.gitlens
|
||||||
|
|
||||||
# Rust plugins
|
streetsidesoftware.code-spell-checker
|
||||||
rust-lang.rust-analyzer
|
gruntfuggly.todo-tree
|
||||||
tamasfe.even-better-toml
|
|
||||||
fill-labs.dependi
|
|
||||||
|
|
||||||
ms-vscode.cpptools
|
|
||||||
];
|
];
|
||||||
|
|
||||||
profiles.default.userSettings = {
|
userSettings = {
|
||||||
# Theme
|
# Theme
|
||||||
"workbench.iconTheme" = "catppuccin-mocha";
|
"workbench.iconTheme" = "catppuccin-mocha";
|
||||||
"workbench.colorTheme" = "Catppuccin Mocha";
|
"workbench.colorTheme" = "Catppuccin Mocha";
|
||||||
"workbench.sideBar.location" = "right";
|
"workbench.sideBar.location" = "right";
|
||||||
"workbench.activityBar.location" = "bottom";
|
"workbench.activityBar.location" = "bottom";
|
||||||
"editor.fontFamily" = "Source Code Pro";
|
"editor.fontFamily" = "SauceCodePro";
|
||||||
|
|
||||||
|
# Settings for all files
|
||||||
|
"files.autoSave" = "off";
|
||||||
|
|
||||||
|
# Git settings
|
||||||
|
"git.autofetch" = true;
|
||||||
|
"git.confirmSync" = false;
|
||||||
|
"git.alwaysSignOff" = true;
|
||||||
|
"git.pruneOnFetch" = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
profiles.home-manager = {
|
||||||
|
extensions = with pkgs.vscode-extensions; [
|
||||||
|
catppuccin.catppuccin-vsc
|
||||||
|
catppuccin.catppuccin-vsc-icons
|
||||||
|
|
||||||
|
mhutchie.git-graph
|
||||||
|
donjayamanne.githistory
|
||||||
|
eamodio.gitlens
|
||||||
|
|
||||||
|
streetsidesoftware.code-spell-checker
|
||||||
|
gruntfuggly.todo-tree
|
||||||
|
|
||||||
|
# Nix specific extensions
|
||||||
|
jnoortheen.nix-ide
|
||||||
|
];
|
||||||
|
|
||||||
|
userSettings = {
|
||||||
|
# Theme
|
||||||
|
"workbench.iconTheme" = "catppuccin-mocha";
|
||||||
|
"workbench.colorTheme" = "Catppuccin Mocha";
|
||||||
|
"workbench.sideBar.location" = "right";
|
||||||
|
"workbench.activityBar.location" = "bottom";
|
||||||
|
"editor.fontFamily" = "SauceCodePro";
|
||||||
|
|
||||||
# Settings for all files
|
# Settings for all files
|
||||||
"files.autoSave" = "off";
|
"files.autoSave" = "off";
|
||||||
@@ -37,9 +68,46 @@
|
|||||||
"git.alwaysSignOff" = true;
|
"git.alwaysSignOff" = true;
|
||||||
"git.pruneOnFetch" = true;
|
"git.pruneOnFetch" = true;
|
||||||
|
|
||||||
|
|
||||||
# Nix lang settings
|
# Nix lang settings
|
||||||
"[nix]"."editor.tabSize" = 2;
|
"[nix]"."editor.tabSize" = 2;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
profiles.rust = {
|
||||||
|
extensions = with pkgs.vscode-extensions; [
|
||||||
|
catppuccin.catppuccin-vsc
|
||||||
|
catppuccin.catppuccin-vsc-icons
|
||||||
|
|
||||||
|
mhutchie.git-graph
|
||||||
|
donjayamanne.githistory
|
||||||
|
eamodio.gitlens
|
||||||
|
|
||||||
|
streetsidesoftware.code-spell-checker
|
||||||
|
gruntfuggly.todo-tree
|
||||||
|
|
||||||
|
# Rust development
|
||||||
|
rust-lang.rust-analyzer
|
||||||
|
tamasfe.even-better-toml
|
||||||
|
fill-labs.dependi
|
||||||
|
];
|
||||||
|
|
||||||
|
userSettings = {
|
||||||
|
# Theme
|
||||||
|
"workbench.iconTheme" = "catppuccin-mocha";
|
||||||
|
"workbench.colorTheme" = "Catppuccin Mocha";
|
||||||
|
"workbench.sideBar.location" = "right";
|
||||||
|
"workbench.activityBar.location" = "bottom";
|
||||||
|
"editor.fontFamily" = "SauceCodePro";
|
||||||
|
|
||||||
|
# Settings for all files
|
||||||
|
"files.autoSave" = "off";
|
||||||
|
|
||||||
|
# Git settings
|
||||||
|
"git.autofetch" = true;
|
||||||
|
"git.confirmSync" = false;
|
||||||
|
"git.alwaysSignOff" = true;
|
||||||
|
"git.pruneOnFetch" = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
@@ -49,8 +49,8 @@
|
|||||||
condition = "gitdir:~/Repos/open-source/";
|
condition = "gitdir:~/Repos/open-source/";
|
||||||
contents = {
|
contents = {
|
||||||
user = {
|
user = {
|
||||||
email = "git@noahknegt.com";
|
email = "github@noahknegt.com";
|
||||||
signingKey = "~/.ssh/id_open_source.pub";
|
signingKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJi7QgoPtTQLHmKNbJAC8mgzQ6Wwq82L2YhBLSaxpQ3/";
|
||||||
};
|
};
|
||||||
|
|
||||||
commit = {
|
commit = {
|
||||||
|
Reference in New Issue
Block a user