diff --git a/users/tao/helix.nix b/users/tao/helix.nix index eb46074..ec556e0 100644 --- a/users/tao/helix.nix +++ b/users/tao/helix.nix @@ -45,7 +45,7 @@ } ]; }; + enable = true; + defaultEditor = true; }; - enable = true; - defaultEditor = true; } diff --git a/users/tao/home.nix b/users/tao/home.nix index e85456d..db894b1 100644 --- a/users/tao/home.nix +++ b/users/tao/home.nix @@ -1,16 +1,11 @@ { - programs.helix = { + imports = [ + ./helix.nix + ]; + + programs.wezterm = { enable = true; - defaultEditor = true; - settings = { - theme = "dracula"; - editor = { - line-number = "relative"; - cursorline = true; - completion-replace = true; - }; - }; - languages = { }; + extraConfig = builtins.readFile ./wezterm.lua; }; programs.git = { diff --git a/users/tao/wezterm.lua b/users/tao/wezterm.lua new file mode 100644 index 0000000..ec52e9c --- /dev/null +++ b/users/tao/wezterm.lua @@ -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, + +}