Added helix configuration, removed vscodew

This commit is contained in:
thiloho
2023-04-12 00:55:12 +02:00
parent c452239038
commit e3f78ca2e7
2 changed files with 21 additions and 14 deletions

View File

@@ -50,16 +50,23 @@
# Home manager configuration
home-manager.users.thiloho = { pkgs, ... }: {
programs = {
helix.enable = true;
helix = {
enable = true;
settings = {
theme = "dark_plus";
editor = {
line-number = "relative";
cursorline = true;
cursor-shape = {
normal = "block";
insert = "bar";
select = "underline";
};
};
};
};
alacritty.enable = true;
firefox.enable = true;
vscode = {
enable = true;
extensions = with pkgs.vscode-extensions; [
astro-build.astro-vscode
bbenoist.nix
];
};
git = {
enable = true;
userName = "thiloho";