update wezterm and helix theme
This commit is contained in:
parent
bdf735a417
commit
de1e7399a5
@ -1,2 +1,2 @@
|
|||||||
inherits = "tokyonight"
|
inherits = "term16_dark"
|
||||||
|
|
||||||
|
37
.wezterm.lua
37
.wezterm.lua
@ -1,24 +1,35 @@
|
|||||||
-- Pull in the wezterm API
|
-- Pull in the wezterm API
|
||||||
local wezterm = require 'wezterm'
|
local wezterm = require("wezterm")
|
||||||
|
|
||||||
-- This will hold the configuration.
|
-- This will hold the configuration.
|
||||||
local config = wezterm.config_builder()
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
|
-- set shell to fish
|
||||||
|
config.default_prog = { '/bin/zsh', '-l' }
|
||||||
|
|
||||||
-- This is where you actually apply your config choices
|
-- This is where you actually apply your config choices
|
||||||
|
|
||||||
-- For example, changing the color scheme:
|
-- my coolnight colorscheme
|
||||||
config.font = wezterm.font("JetBrainsMono Nerd Font", {weight="Regular", stretch="Normal", style="Normal"})
|
config.colors = {
|
||||||
config.color_scheme = 'tokyonight'
|
foreground = "#CBE0F0",
|
||||||
config.hide_tab_bar_if_only_one_tab = true
|
background = "#011423",
|
||||||
config.window_background_opacity = .9
|
cursor_bg = "#47FF9C",
|
||||||
config.use_fancy_tab_bar = false
|
cursor_border = "#47FF9C",
|
||||||
config.tab_bar_at_bottom = true
|
cursor_fg = "#011423",
|
||||||
config.window_padding = {
|
selection_bg = "#033259",
|
||||||
left = 0,
|
selection_fg = "#CBE0F0",
|
||||||
right = 0,
|
ansi = { "#214969", "#E52E2E", "#44FFB1", "#FFE073", "#0FC5ED", "#a277ff", "#24EAF7", "#24EAF7" },
|
||||||
top = 0,
|
brights = { "#214969", "#E52E2E", "#44FFB1", "#FFE073", "#A277FF", "#a277ff", "#24EAF7", "#24EAF7" },
|
||||||
bottom = 0,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
config.font = wezterm.font("FiraCode Nerd Font")
|
||||||
|
config.font_size = 19
|
||||||
|
|
||||||
|
config.enable_tab_bar = true
|
||||||
|
|
||||||
|
config.window_decorations = "RESIZE"
|
||||||
|
config.window_background_opacity = 0.75
|
||||||
|
config.macos_window_background_blur = 50
|
||||||
|
|
||||||
-- and finally, return the configuration to wezterm
|
-- and finally, return the configuration to wezterm
|
||||||
return config
|
return config
|
||||||
|
Loading…
Reference in New Issue
Block a user