Skip to content

Instantly share code, notes, and snippets.

@muokicaleb
Created August 24, 2024 07:09
Show Gist options
  • Save muokicaleb/9b2389ef12008de0ac0b790d217a72fb to your computer and use it in GitHub Desktop.
Save muokicaleb/9b2389ef12008de0ac0b790d217a72fb to your computer and use it in GitHub Desktop.
-- 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
-- my coolnight colorscheme
config.colors = {
foreground = "#CBE0F0",
background = "#081e2b",
cursor_bg = "#47FF9C",
cursor_border = "#47FF9C",
cursor_fg = "#011423",
selection_bg = "#033259",
selection_fg = "#CBE0F0",
ansi = { "#214969", "#E52E2E", "#44FFB1", "#FFE073", "#0FC5ED", "#a277ff", "#24EAF7", "#24EAF7" },
brights = { "#214969", "#E52E2E", "#44FFB1", "#FFE073", "#A277FF", "#a277ff", "#24EAF7", "#24EAF7" },
}
config.font = wezterm.font("MesloLGS Nerd Font Mono")
config.font_size = 16
config.enable_tab_bar = false
config.window_decorations = "RESIZE"
config.window_background_opacity = 1
config.macos_window_background_blur = 10
-- and finally, return the configuration to wezterm
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment