From db901ee0ba8cac99851137106689de012e1856cd Mon Sep 17 00:00:00 2001 From: Anton Volnuhin Date: Mon, 25 Mar 2024 22:54:05 +0300 Subject: [PATCH] trying wezterm --- dot_wezterm.lua | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 dot_wezterm.lua diff --git a/dot_wezterm.lua b/dot_wezterm.lua new file mode 100644 index 0000000..dbefdf3 --- /dev/null +++ b/dot_wezterm.lua @@ -0,0 +1,28 @@ +-- 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 +config.ssh_domains = { + { + -- This name identifies the domain + name = 'home', + -- The hostname or address to connect to. Will be used to match settings + -- from your ssh config file + remote_address = '192.168.1.20', + -- The username to use on the remote host + username = 'anton', + }, +} + + +-- For example, changing the color scheme: ==> A!=B +config.color_scheme = 'OceanicMaterial' +config.font = wezterm.font 'Menligaturized' +config.font_size = 16 +config.line_height = 1.15 +config.harfbuzz_features = { 'calt=1', 'clig=0', 'liga=0' } +-- and finally, return the configuration to wezterm +return config