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
|
||||
local wezterm = require 'wezterm'
|
||||
local wezterm = require("wezterm")
|
||||
|
||||
-- This will hold the configuration.
|
||||
local config = wezterm.config_builder()
|
||||
|
||||
-- set shell to fish
|
||||
config.default_prog = { '/bin/zsh', '-l' }
|
||||
|
||||
-- This is where you actually apply your config choices
|
||||
|
||||
-- For example, changing the color scheme:
|
||||
config.font = wezterm.font("JetBrainsMono Nerd Font", {weight="Regular", stretch="Normal", style="Normal"})
|
||||
config.color_scheme = 'tokyonight'
|
||||
config.hide_tab_bar_if_only_one_tab = true
|
||||
config.window_background_opacity = .9
|
||||
config.use_fancy_tab_bar = false
|
||||
config.tab_bar_at_bottom = true
|
||||
config.window_padding = {
|
||||
left = 0,
|
||||
right = 0,
|
||||
top = 0,
|
||||
bottom = 0,
|
||||
-- my coolnight colorscheme
|
||||
config.colors = {
|
||||
foreground = "#CBE0F0",
|
||||
background = "#011423",
|
||||
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("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
|
||||
return config
|
||||
|
Loading…
Reference in New Issue
Block a user