chore: Updated wezterm and deno 76045b97
Steve · 2025-06-20 22:20 3 file(s) · +36 −11
fish/conf.d/deno.fish +2 −1
1 1
2 -
source "/Users/stevedsimkins/.deno/env.fish"
2 +
source "/Users/stevedsimkins/.deno/env.fish"
3 +
source "/Users/stevedylandev/.deno/env.fish"
wezterm/.wezterm.lua (added) +29 −0
1 +
local wezterm = require 'wezterm'
2 +
3 +
local config = {}
4 +
5 +
if wezterm.config_builder then
6 +
  config = wezterm.config_builder()
7 +
end
8 +
9 +
--config.color_scheme = "Poimandres"
10 +
config.color_scheme = 'Black Metal (Bathory) (base16)'
11 +
12 +
config.font = wezterm.font('BerkeleyMono Nerd Font')
13 +
config.font_size = 14
14 +
15 +
16 +
config.enable_tab_bar = false
17 +
config.window_decorations = "RESIZE"
18 +
config.window_padding = {
19 +
  left = 10,
20 +
  right = 10,
21 +
  top = 4,
22 +
  bottom = 4
23 +
}
24 +
25 +
config.initial_cols = 85
26 +
config.initial_rows = 30
27 +
28 +
29 +
return config
wezterm/wezterm.lua +5 −10
6 6
  config = wezterm.config_builder()
7 7
end
8 8
9 -
config.default_prog = { '/opt/homebrew/bin/nu' }
10 -
11 -
config.color_scheme = "Poimandres"
9 +
--config.color_scheme = "Poimandres"
10 +
config.color_scheme = 'Black Metal (Bathory) (base16)'
12 11
13 -
config.font = wezterm.font('CommitMono Nerd Font')
12 +
config.font = wezterm.font('BerkeleyMono Nerd Font')
14 13
config.font_size = 14
14 +
15 15
16 16
config.enable_tab_bar = false
17 17
config.window_decorations = "RESIZE"
18 18
config.window_padding = {
19 19
  left = 10,
20 -
  right =10,
20 +
  right = 10,
21 21
  top = 4,
22 22
  bottom = 4
23 23
}
24 -
25 -
-- ITS OVER 9000!!!!
26 -
config.max_fps = 120
27 -
config.front_end = "WebGpu"
28 -
config.webgpu_power_preference = "HighPerformance",
29 24
30 25
config.initial_cols = 85
31 26
config.initial_rows = 30