mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
fixed wezterm input lag
This commit is contained in:
parent
3eaf0f8d66
commit
e1ca37ce27
1 changed files with 3 additions and 0 deletions
|
@ -9,6 +9,7 @@ in
|
||||||
programs.wezterm = {
|
programs.wezterm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.wezterm;
|
package = pkgs.wezterm;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
|
||||||
colorSchemes = {
|
colorSchemes = {
|
||||||
SeeThroughBlack = {
|
SeeThroughBlack = {
|
||||||
|
@ -32,10 +33,12 @@ in
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# the "enable_wayland = false" config line forces wezterm to use xwayland instead of wayland
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
local wezterm = require 'wezterm'
|
local wezterm = require 'wezterm'
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
enable_wayland = false,
|
||||||
window_background_opacity = 0.8,
|
window_background_opacity = 0.8,
|
||||||
font = wezterm.font_with_fallback {
|
font = wezterm.font_with_fallback {
|
||||||
'DejaVuSansMono',
|
'DejaVuSansMono',
|
||||||
|
|
Loading…
Reference in a new issue