Initial Commit
This commit is contained in:
commit
d18f18fc29
28 changed files with 1415 additions and 0 deletions
50
graphical/wezterm/default.nix
Normal file
50
graphical/wezterm/default.nix
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{pkgs, ...}: {
|
||||
programs.wezterm = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
|
||||
package = pkgs.runCommand "wezterm-config-only" {} ''
|
||||
mkdir -p $out/etc/profile.d
|
||||
cp ${pkgs.wezterm}/etc/profile.d/wezterm.sh $out/etc/profile.d
|
||||
'';
|
||||
|
||||
extraConfig = builtins.readFile ./wezterm.lua;
|
||||
|
||||
colorSchemes = {
|
||||
gbox = rec {
|
||||
background = "#282828";
|
||||
foreground = "#ebdbb2";
|
||||
|
||||
cursor_bg = foreground;
|
||||
cursor_fg = background;
|
||||
|
||||
cursor_border = foreground;
|
||||
|
||||
selection_fg = background;
|
||||
selection_bg = foreground;
|
||||
|
||||
ansi = [
|
||||
"#282828"
|
||||
"#cc241d"
|
||||
"#98971a"
|
||||
"#d79921"
|
||||
"#458588"
|
||||
"#B16286"
|
||||
"#689D6A"
|
||||
"#A89984"
|
||||
];
|
||||
|
||||
brights = [
|
||||
"#928374"
|
||||
"#FB4934"
|
||||
"#B8BB26"
|
||||
"#FABD2F"
|
||||
"#83A598"
|
||||
"#D3869B"
|
||||
"#8EC07C"
|
||||
"#EBDBB2"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
12
graphical/wezterm/wezterm.lua
Normal file
12
graphical/wezterm/wezterm.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
color_scheme = 'gbox',
|
||||
enable_tab_bar = false,
|
||||
font_size = 10.0,
|
||||
-- font = wezterm.font('ComicShanns Mono Nerd Font'),
|
||||
keys = {
|
||||
{
|
||||
key = "F11",
|
||||
action = wezterm.action.ToggleFullScreen,
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue