mirror of
https://github.com/Cian-H/dotfiles.git
synced 2026-01-01 23:11:58 +00:00
This change allows the dotfiles to work with chezmoi (e.g: on windows) and improves grepability with neovim/telescope
11 lines
246 B
Lua
11 lines
246 B
Lua
local wezterm = require("wezterm")
|
|
local config = wezterm.config_builder()
|
|
|
|
config.enable_wayland = false
|
|
config.default_prog = { "nu" }
|
|
config.color_scheme = "Tokyo Night"
|
|
config.enable_kitty_keyboard = true
|
|
config.font_size = 16
|
|
|
|
return config
|