mirror of
https://github.com/nmasur/dotfiles
synced 2024-12-04 18:19:08 +00:00
Compare commits
4 Commits
f0b9bfc0a7
...
83e95b306d
Author | SHA1 | Date | |
---|---|---|---|
|
83e95b306d | ||
|
6742103195 | ||
|
57ce387402 | ||
|
265144d957 |
@ -51,6 +51,7 @@ inputs.darwin.lib.darwinSystem {
|
||||
kubernetes.enable = true;
|
||||
_1password.enable = true;
|
||||
slack.enable = true;
|
||||
wezterm.enable = true;
|
||||
}
|
||||
];
|
||||
}
|
||||
|
@ -61,7 +61,7 @@
|
||||
config.theme.colors.base06 # silver
|
||||
];
|
||||
brights = [
|
||||
config.theme.colors.base04 # grey
|
||||
config.theme.colors.base03 # grey
|
||||
config.theme.colors.base08 # red
|
||||
config.theme.colors.base0B # lime
|
||||
config.theme.colors.base0A # yellow
|
||||
@ -112,14 +112,37 @@
|
||||
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
|
||||
audible_bell = "Disabled",
|
||||
|
||||
initial_rows = 80,
|
||||
initial_cols = 200,
|
||||
|
||||
font = wezterm.font 'VictorMono Nerd Font',
|
||||
font_size = 18.0,
|
||||
keys = {
|
||||
{
|
||||
key = 'Enter',
|
||||
mods = 'SHIFT',
|
||||
action = wezterm.action.SendString '\x1F'
|
||||
},
|
||||
},
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
@ -47,6 +47,15 @@
|
||||
];
|
||||
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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user