[fix] Use the old wezterm config
This commit is contained in:
@@ -1,54 +1,53 @@
|
|||||||
-- local wezterm = require 'wezterm';
|
local wezterm = require 'wezterm';
|
||||||
|
|
||||||
return {}
|
return {
|
||||||
-- return {
|
font = wezterm.font_with_fallback { "Hasklug Nerd Font", "Hasklug Nerd Font Mono" },
|
||||||
-- font = wezterm.font_with_fallback { "Hasklug Nerd Font", "Hasklug Nerd Font Mono" },
|
font_size = 16,
|
||||||
-- font_size = 16,
|
colors = {
|
||||||
-- -- colors = {
|
-- The default text color
|
||||||
-- -- -- The default text color
|
foreground = "#f8f8f2",
|
||||||
-- -- foreground = "#f8f8f2",
|
-- The default background color
|
||||||
-- -- -- The default background color
|
-- background = "#282a36",
|
||||||
-- -- -- background = "#282a36",
|
-- Overrides the cell background color when the current cell is occupied by the
|
||||||
-- -- -- Overrides the cell background color when the current cell is occupied by the
|
-- cursor and the cursor style is set to Block
|
||||||
-- -- -- cursor and the cursor style is set to Block
|
cursor_bg = "#f8f8f2",
|
||||||
-- -- cursor_bg = "#f8f8f2",
|
-- Overrides the text color when the current cell is occupied by the cursor
|
||||||
-- -- -- Overrides the text color when the current cell is occupied by the cursor
|
cursor_fg = "#000",
|
||||||
-- -- cursor_fg = "#000",
|
-- Specifies the border color of the cursor when the cursor style is set to Block,
|
||||||
-- -- -- Specifies the border color of the cursor when the cursor style is set to Block,
|
-- or the color of the vertical or horizontal bar when the cursor style is set to
|
||||||
-- -- -- or the color of the vertical or horizontal bar when the cursor style is set to
|
-- Bar or Underline.
|
||||||
-- -- -- Bar or Underline.
|
cursor_border = "#52ad70",
|
||||||
-- -- cursor_border = "#52ad70",
|
-- the foreground color of selected text
|
||||||
-- -- -- the foreground color of selected text
|
selection_fg = "#ffffff",
|
||||||
-- -- selection_fg = "#ffffff",
|
-- the background color of selected text
|
||||||
-- -- -- the background color of selected text
|
selection_bg = "#ffffff",
|
||||||
-- -- selection_bg = "#ffffff",
|
-- The color of the scrollbar "thumb"; the portion that represents the current viewport
|
||||||
-- -- -- The color of the scrollbar "thumb"; the portion that represents the current viewport
|
scrollbar_thumb = "#222222",
|
||||||
-- -- scrollbar_thumb = "#222222",
|
-- The color of the split lines between panes
|
||||||
-- -- -- The color of the split lines between panes
|
split = "#444444",
|
||||||
-- -- split = "#444444",
|
ansi = { "#21222c", "#ff5555", "#50fa7b", "#f1fa8c", "#bd93f9", "#ff79c6", "#8be9fd", "#f8f8f2" },
|
||||||
-- -- ansi = { "#21222c", "#ff5555", "#50fa7b", "#f1fa8c", "#bd93f9", "#ff79c6", "#8be9fd", "#f8f8f2" },
|
brights = { "#6272a4", "#ff6e6e", "#69ff94", "#ffffa5", "#d6acff", "#ff92df", "#a4ffff", "#ffffff" },
|
||||||
-- -- brights = { "#6272a4", "#ff6e6e", "#69ff94", "#ffffa5", "#d6acff", "#ff92df", "#a4ffff", "#ffffff" },
|
-- Arbitrary colors of the palette in the range from 16 to 255
|
||||||
-- -- -- Arbitrary colors of the palette in the range from 16 to 255
|
indexed = { [136] = "#af8700" },
|
||||||
-- -- indexed = { [136] = "#af8700" },
|
-- Since: nightly builds only
|
||||||
-- -- -- Since: nightly builds only
|
-- When the IME, a dead key or a leader key are being processed and are effectively
|
||||||
-- -- -- When the IME, a dead key or a leader key are being processed and are effectively
|
-- holding input pending the result of input composition, change the cursor
|
||||||
-- -- -- holding input pending the result of input composition, change the cursor
|
-- to this color to give a visual cue about the compose state.
|
||||||
-- -- -- to this color to give a visual cue about the compose state.
|
compose_cursor = "orange",
|
||||||
-- -- -- compose_cursor = "orange",
|
},
|
||||||
-- -- },
|
-- color_scheme = "Catppuccin Mocha",
|
||||||
-- -- -- color_scheme = "Catppuccin Mocha",
|
initial_cols = 120,
|
||||||
-- initial_cols = 120,
|
hide_tab_bar_if_only_one_tab = true,
|
||||||
-- hide_tab_bar_if_only_one_tab = true,
|
window_background_opacity = 0.8,
|
||||||
-- window_background_opacity = 0.8,
|
cursor_blink_rate = 8,
|
||||||
-- cursor_blink_rate = 8,
|
default_cursor_style = "BlinkingBlock",
|
||||||
-- -- default_cursor_style = "BlinkingBlock",
|
default_prog = { "fish", "-l" },
|
||||||
-- default_prog = { "fish", "-l" },
|
window_padding = {
|
||||||
-- window_padding = {
|
left = 2,
|
||||||
-- left = 2,
|
right = 0,
|
||||||
-- right = 0,
|
top = 2,
|
||||||
-- top = 2,
|
bottom = 0,
|
||||||
-- bottom = 0,
|
},
|
||||||
-- },
|
window_decorations = "RESIZE",
|
||||||
-- window_decorations = "RESIZE",
|
use_ime = false,
|
||||||
-- -- use_ime = false,
|
}
|
||||||
-- }
|
|
||||||
|
|||||||
Reference in New Issue
Block a user