Skip to content

Commit

Permalink
chore: improve wezterm conf
Browse files Browse the repository at this point in the history
  • Loading branch information
marmos91 committed Jun 27, 2024
1 parent 13f7fcd commit 99a95de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
11 changes: 6 additions & 5 deletions config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ local wezterm = require("wezterm")
local config = {
term = "xterm-256color",
color_scheme = "Catppuccin Mocha",
font = wezterm.font("FiraCode Nerd Font Mono"),
font_size = 12,
enable_tab_bar = true,
font = wezterm.font("MesloLGS Nerd Font"),
font_size = 12.3,
front_end = "OpenGL",
freetype_load_flags = "NO_HINTING",
freetype_load_target = "HorizontalLcd",
enable_tab_bar = false,
use_fancy_tab_bar = false,
tab_bar_at_bottom = false,
window_background_opacity = 0.7,
window_close_confirmation = "NeverPrompt",
macos_window_background_blur = 20,
keys = {
{
key = "n",
Expand Down
3 changes: 2 additions & 1 deletion install/fonts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ if ! is-macos -o ! is-executable brew; then
return
fi

brew tap homebrew/cask-fonts
brew tap shaunsingh/SFMono-Nerd-Font-Ligaturized

fonts=(
font-fira-code-nerd-font
font-jetbrains-mono-nerd-font
font-meslo-lg-nerd-font
font-sf-mono-nerd-font-ligaturized
)

brew install --cask "${fonts[@]}"

0 comments on commit 99a95de

Please sign in to comment.