Compare commits

..

No commits in common. "13bd3b37045b02795461aa794c3127a6df7fd55b" and "de2cc5ce0d12033303f39ad64c46ca6749a724b1" have entirely different histories.

View File

@ -1,22 +1,15 @@
local wezterm = require('wezterm')
local config = wezterm.config_builder()
wezterm.on('gui-startup', function()
local tab, pane, window = wezterm.mux.spawn_window({})
tab:set_title('home')
end)
if string.find(wezterm.target_triple, 'windows') then
config.default_prog = {
'powershell.exe', '-ExecutionPolicy', 'Bypass', '-NoLogo', '-NoExit'
}
end
config.default_prog = {
'powershell.exe', '-ExecutionPolicy', 'Bypass', '-NoLogo', '-NoExit'
}
config.font = wezterm.font('CaskaydiaCove Nerd Font Mono')
config.font_size = 9
config.harfbuzz_features = { 'calt=0', 'clig=0', 'liga=0' }
config.color_scheme = 'Firefly Traditional'
config.color_scheme = 'Tango (terminal.sexy)'
config.colors = {
foreground = '#D3D7CF',
cursor_fg = 'black',
@ -82,13 +75,4 @@ for _, map in pairs({
})
end
-- Attempt require(module) load a module, don't fail if its missing.
-- Additionally, call the returned function passing in the wezterm and config
-- objects defined in this file.
local try_require = function(module)
pcall(function() require(module)(wezterm, config) end)
end;
try_require('local')
return config