From 770410f2cdd9aa41758a08dd782e6754eaebd668 Mon Sep 17 00:00:00 2001 From: Michaƫl Ball Date: Fri, 23 Aug 2024 09:36:33 +0100 Subject: New configs --- alacritty/.config/alacritty/alacritty.toml | 6 ++++++ wezterm/.wezterm.lua | 24 ++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 alacritty/.config/alacritty/alacritty.toml create mode 100644 wezterm/.wezterm.lua diff --git a/alacritty/.config/alacritty/alacritty.toml b/alacritty/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..1a6894d --- /dev/null +++ b/alacritty/.config/alacritty/alacritty.toml @@ -0,0 +1,6 @@ +[window] +decorations = "Buttonless" + +[font] +normal = { family = "SarasaTermSC Nerd Font Mono", style = "Regular" } +size = 13 diff --git a/wezterm/.wezterm.lua b/wezterm/.wezterm.lua new file mode 100644 index 0000000..b99a500 --- /dev/null +++ b/wezterm/.wezterm.lua @@ -0,0 +1,24 @@ +-- Pull in the wezterm API +local wezterm = require 'wezterm' + +-- This will hold the configuration. +local config = wezterm.config_builder() + +-- This is where you actually apply your config choices +config.font = wezterm.font 'SarasaFixedSC Nerd Font Mono' +config.font_size = 13 +config.window_frame = { + -- The font used in the tab bar. + -- Roboto Bold is the default; this font is bundled + -- with wezterm. + -- Whatever font is selected here, it will have the + -- main font setting appended to it to pick up any + -- fallback fonts you may have used there. + font = wezterm.font { family = 'San Francisco', weight = 'Bold' }, +} + +-- For example, changing the color scheme: +config.color_scheme = 'iTerm2 Light Background' + +-- and finally, return the configuration to wezterm +return config -- cgit v1.2.3