Compare commits

...

4 Commits

Author SHA1 Message Date
Noah Masur
83e95b306d
add tf init to darwin 2024-06-16 19:00:28 -06:00
Noah Masur
6742103195
add wezterm to lookingglass 2024-06-16 18:59:43 -06:00
Noah Masur
57ce387402
wezterm completion for fish autosuggestions 2024-06-16 18:58:57 -06:00
Noah Masur
265144d957
update style of wezterm tab bar 2024-06-16 18:31:52 -06:00
3 changed files with 36 additions and 3 deletions

View File

@ -51,6 +51,7 @@ inputs.darwin.lib.darwinSystem {
kubernetes.enable = true; kubernetes.enable = true;
_1password.enable = true; _1password.enable = true;
slack.enable = true; slack.enable = true;
wezterm.enable = true;
} }
]; ];
} }

View File

@ -61,7 +61,7 @@
config.theme.colors.base06 # silver config.theme.colors.base06 # silver
]; ];
brights = [ brights = [
config.theme.colors.base04 # grey config.theme.colors.base03 # grey
config.theme.colors.base08 # red config.theme.colors.base08 # red
config.theme.colors.base0B # lime config.theme.colors.base0B # lime
config.theme.colors.base0A # yellow config.theme.colors.base0A # yellow
@ -112,14 +112,37 @@
bottom = 0, bottom = 0,
}, },
font = wezterm.font 'VictorMono Nerd Font',
font_size = 18.0,
-- Tab Bar
window_frame = {
font = wezterm.font 'VictorMono Nerd Font',
font_size = 16.0,
},
colors = {
tab_bar = {
active_tab = {
bg_color = '${config.theme.colors.base00}',
fg_color = '${config.theme.colors.base04}',
},
},
},
-- Disable audio -- Disable audio
audible_bell = "Disabled", audible_bell = "Disabled",
initial_rows = 80, initial_rows = 80,
initial_cols = 200, initial_cols = 200,
font = wezterm.font 'VictorMono Nerd Font', keys = {
font_size = 18.0, {
key = 'Enter',
mods = 'SHIFT',
action = wezterm.action.SendString '\x1F'
},
},
} }
''; '';
}; };

View File

@ -47,6 +47,15 @@
]; ];
text = builtins.readFile ../../modules/common/shell/bash/scripts/aws-ec2.sh; text = builtins.readFile ../../modules/common/shell/bash/scripts/aws-ec2.sh;
}) })
(pkgs.writeShellApplication {
name = "tfinit";
runtimeInputs = [
pkgs.terraform
pkgs.gawk
pkgs.git
];
text = builtins.readFile ../../modules/common/shell/bash/scripts/terraform-init.sh;
})
]; ];
programs.fish.shellAbbrs = { programs.fish.shellAbbrs = {