From 57d2999d6afe062dc3ea89715dbaa65929eea5be Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Thu, 9 May 2024 12:30:04 -0400 Subject: [PATCH] fonts + stuff --- nix/home-manager/modules/files.nix | 2 +- nix/home-manager/modules/packages/default.nix | 2 ++ wezterm/wezterm.lua | 4 +++- zed/settings.json | 15 +++++++++++++++ 4 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 zed/settings.json diff --git a/nix/home-manager/modules/files.nix b/nix/home-manager/modules/files.nix index 04e4711..2c0851c 100644 --- a/nix/home-manager/modules/files.nix +++ b/nix/home-manager/modules/files.nix @@ -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; }; } diff --git a/nix/home-manager/modules/packages/default.nix b/nix/home-manager/modules/packages/default.nix index 621005f..5e98644 100644 --- a/nix/home-manager/modules/packages/default.nix +++ b/nix/home-manager/modules/packages/default.nix @@ -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 diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua index 7c1da45..d99a845 100644 --- a/wezterm/wezterm.lua +++ b/wezterm/wezterm.lua @@ -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 diff --git a/zed/settings.json b/zed/settings.json new file mode 100644 index 0000000..05529e9 --- /dev/null +++ b/zed/settings.json @@ -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 +}