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 = ""; text = "";
recursive = true; recursive = true;
}; };
"bin/git-sync".source = ./${repo_root}/git-sync;
".cargo/config.toml".source = (pkgs.formats.toml {}).generate "cargo-config" { ".cargo/config.toml".source = (pkgs.formats.toml {}).generate "cargo-config" {
net = { net = {
git-fetch-with-cli = true; git-fetch-with-cli = true;
@ -67,5 +66,6 @@ in {
}; };
}; };
"ov/config.yaml".source = ./${repo_root}/ov/ov-less.yaml; "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 erdtree
erg erg
emacs emacs
fantasque-sans-mono
fd fd
ffmpeg_6 ffmpeg_6
gawkInteractive gawkInteractive
@ -47,6 +48,7 @@ in {
kondo kondo
litecli litecli
magic-wormhole-rs magic-wormhole-rs
martian-mono
ncdu ncdu
neovide neovide
ov ov

View file

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