This commit is contained in:
Tao Tien 2024-01-30 11:08:42 -08:00
parent b7bfcbeb7d
commit 2478bb7841
3 changed files with 16 additions and 13 deletions

View file

@ -45,7 +45,7 @@
} }
]; ];
}; };
};
enable = true; enable = true;
defaultEditor = true; defaultEditor = true;
};
} }

View file

@ -1,16 +1,11 @@
{ {
programs.helix = { imports = [
./helix.nix
];
programs.wezterm = {
enable = true; enable = true;
defaultEditor = true; extraConfig = builtins.readFile ./wezterm.lua;
settings = {
theme = "dracula";
editor = {
line-number = "relative";
cursorline = true;
completion-replace = true;
};
};
languages = { };
}; };
programs.git = { programs.git = {

8
users/tao/wezterm.lua Normal file
View file

@ -0,0 +1,8 @@
local wezterm = require 'wezterm'
return {
font = wezterm.font 'FiraCode Nerd Font',
color_scheme = "Dracula",
warn_about_missing_glyphs = false,
check_for_updates = false,
}