From a16cadac814ae320f48d792b3df7d589dfd1e22d Mon Sep 17 00:00:00 2001 From: Victor Timofei Date: Sat, 3 Jun 2023 16:28:59 +0300 Subject: [PATCH] Add wezterm config --- .config/wezterm/tokyonight_night.toml | 40 +++++++++++++++++++++++++++ .config/wezterm/wezterm.lua | 10 +++++++ 2 files changed, 50 insertions(+) create mode 100644 .config/wezterm/tokyonight_night.toml create mode 100644 .config/wezterm/wezterm.lua diff --git a/.config/wezterm/tokyonight_night.toml b/.config/wezterm/tokyonight_night.toml new file mode 100644 index 0000000..976a18a --- /dev/null +++ b/.config/wezterm/tokyonight_night.toml @@ -0,0 +1,40 @@ +[colors] +foreground = "#c0caf5" +background = "#1a1b26" +cursor_bg = "#c0caf5" +cursor_border = "#c0caf5" +cursor_fg = "#1a1b26" +selection_bg = "#283457" +selection_fg = "#c0caf5" + +ansi = ["#15161e", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#a9b1d6"] +brights = ["#414868", "#f7768e", "#9ece6a", "#e0af68", "#7aa2f7", "#bb9af7", "#7dcfff", "#c0caf5"] + +[colors.tab_bar] +inactive_tab_edge = "#16161e" +background = "#191b28" + +[colors.tab_bar.active_tab] +fg_color = "#7aa2f7" +bg_color = "#1a1b26" + +[colors.tab_bar.inactive_tab] +bg_color = "#16161e" +fg_color = "#545c7e" + +[colors.tab_bar.inactive_tab_hover] +bg_color = "#16161e" +fg_color = "#7aa2f7" + +[colors.tab_bar.new_tab_hover] +fg_color = "#16161e" +bg_color = "#7aa2f7" + +[colors.tab_bar.new_tab] +fg_color = "#7aa2f7" +bg_color = "#191b28" + +[metadata] +aliases = [] +author = "folke" +name = "Tokyo Night" diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua new file mode 100644 index 0000000..e602b22 --- /dev/null +++ b/.config/wezterm/wezterm.lua @@ -0,0 +1,10 @@ +local wezterm = require 'wezterm' +local config = {} + +colors, metadata = wezterm.color.load_scheme('/home/vtimofei/.config/wezterm/tokyonight_night.toml') + +config.enable_tab_bar = false + +config.colors = colors + +return config