reorganize
This commit is contained in:
34
modules/home-manager/wezterm/default.nix
Normal file
34
modules/home-manager/wezterm/default.nix
Normal file
@@ -0,0 +1,34 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
programs.wezterm = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
return {
|
||||
color_scheme = 'catppuccin-frappe',
|
||||
font = wezterm.font('PragmataPro Liga'),
|
||||
font_size = 16,
|
||||
use_fancy_tab_bar = false,
|
||||
native_macos_fullscreen_mode = false,
|
||||
enable_scroll_bar = false,
|
||||
window_decorations = "RESIZE",
|
||||
hide_tab_bar_if_only_one_tab = true,
|
||||
keys = {
|
||||
{
|
||||
key = 'n',
|
||||
mods = 'CMD|SHIFT',
|
||||
action = wezterm.action.ToggleFullScreen,
|
||||
},
|
||||
},
|
||||
window_padding = {
|
||||
left = 0,
|
||||
right = 0,
|
||||
top = 0,
|
||||
bottom = 0,
|
||||
},
|
||||
-- window_background_opacity = 0.90,
|
||||
-- macos_window_background_blur = 20,
|
||||
}
|
||||
'';
|
||||
};
|
||||
}
|
||||
27
modules/home-manager/wezterm/wezterm.lua
Normal file
27
modules/home-manager/wezterm/wezterm.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
local wezterm = require 'wezterm'
|
||||
|
||||
return {
|
||||
color_scheme = 'catppuccin-frappe',
|
||||
-- font = wezterm.font('PragmataPro Liga'),
|
||||
font_size = 16,
|
||||
use_fancy_tab_bar = false,
|
||||
native_macos_fullscreen_mode = false,
|
||||
enable_scroll_bar = false,
|
||||
window_decorations = "RESIZE",
|
||||
hide_tab_bar_if_only_one_tab = true,
|
||||
keys = {
|
||||
{
|
||||
key = 'n',
|
||||
mods = 'CMD|SHIFT',
|
||||
action = wezterm.action.ToggleFullScreen,
|
||||
},
|
||||
},
|
||||
window_padding = {
|
||||
left = 0,
|
||||
right = 0,
|
||||
top = 0,
|
||||
bottom = 0,
|
||||
},
|
||||
-- window_background_opacity = 0.90,
|
||||
-- macos_window_background_blur = 20,
|
||||
}
|
||||
Reference in New Issue
Block a user