fonts + stuff

This commit is contained in:
Anthony Cicchetti 2024-05-09 12:30:04 -04:00
parent eaecd39e76
commit 57d2999d6a
4 changed files with 21 additions and 2 deletions

View file

@ -23,7 +23,6 @@ in {
text = "";
recursive = true;
};
"bin/git-sync".source = ./${repo_root}/git-sync;
".cargo/config.toml".source = (pkgs.formats.toml {}).generate "cargo-config" {
net = {
git-fetch-with-cli = true;
@ -67,5 +66,6 @@ in {
};
};
"ov/config.yaml".source = ./${repo_root}/ov/ov-less.yaml;
"zed/settings.json".source = ./${repo_root}/zed/settings.json;
};
}

View file

@ -30,6 +30,7 @@ in {
erdtree
erg
emacs
fantasque-sans-mono
fd
ffmpeg_6
gawkInteractive
@ -47,6 +48,7 @@ in {
kondo
litecli
magic-wormhole-rs
martian-mono
ncdu
neovide
ov

View file

@ -7,6 +7,7 @@ if wezterm.config_builder then
end
config.font = wezterm.font_with_fallback({
{ family = "Fantasque Sans Mono" },
{ family = "Iosevka Custom", weight = "Medium" },
})
@ -15,12 +16,13 @@ config.font_rules = {
italic = true,
font = wezterm.font_with_fallback({
{ family = "Dank Mono", italic = true },
{ family = "Fantasque Sans Mono", italic = true },
{ family = "Iosevka Custom", weight = "Light" },
}),
},
}
config.font_size = 15.0
config.font_size = 16.0
-- wayland?
config.enable_wayland = true
-- TERM name

15
zed/settings.json Normal file
View file

@ -0,0 +1,15 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run the `open default settings` command
// from the command palette or from `Zed` application menu.
{
"theme": "Kanagawa Wave",
"vim_mode": true,
"ui_font_size": 16,
"buffer_font_family": "Fantasque Sans Mono",
"buffer_font_size": 16
}