wrappers: add wezterm
This commit is contained in:
parent
9991b2b8f2
commit
fc4185d65e
3 changed files with 18 additions and 2 deletions
10
wrappers/wezterm/config.lua
Normal file
10
wrappers/wezterm/config.lua
Normal file
|
@ -0,0 +1,10 @@
|
|||
local wezterm = require 'wezterm'
|
||||
|
||||
return {
|
||||
color_scheme = 'Default Dark (base16)',
|
||||
enable_tab_bar = false,
|
||||
window_decorations = 'RESIZE',
|
||||
font = wezterm.font('Iosevka Nerd Font'),
|
||||
font_size = 14.0,
|
||||
native_macos_fullscreen_mode = true,
|
||||
}
|
6
wrappers/wezterm/default.nix
Normal file
6
wrappers/wezterm/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
wrappers.wezterm = {
|
||||
basePackage = pkgs.wezterm;
|
||||
env.WEZTERM_CONFIG_FILE.value = ./config.lua;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue