wezterm
This commit is contained in:
parent
b7bfcbeb7d
commit
2478bb7841
3 changed files with 16 additions and 13 deletions
|
|
@ -45,7 +45,7 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
enable = true;
|
||||||
|
defaultEditor = true;
|
||||||
};
|
};
|
||||||
enable = true;
|
|
||||||
defaultEditor = true;
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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
8
users/tao/wezterm.lua
Normal 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,
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue