setting up wezterm

This commit is contained in:
Bit Borealis 2023-08-02 13:30:59 +00:00
parent 0670fa4d53
commit b4a2e04913
Signed by: theotheroracle
GPG key ID: 2D816A2DCA6E5649

View file

@ -71,7 +71,9 @@ with import ./modules/neovim-config.nix { inherit pkgs lib fromGitHub; };
# fish config
fish_greeting = " heya ${config.home.username}, welcome to $(hostnamectl --pretty) ~";
};
#configure dconf
# configure dconf
# use dconf watch / to monitor for changes
# use dconf dump /path/to/keys | dconf2nix to generate automatically
dconf.settings = {
"org/gnome/mutter".center-new-windows = true;
"org/gnome/desktop/sound".allow-volume-above-100-percent = true;
@ -94,7 +96,7 @@ with import ./modules/neovim-config.nix { inherit pkgs lib fromGitHub; };
programs.home-manager.enable = true;
programs.zellij = {
enable = true;
enableFishIntegration = true;
# enableFishIntegration = true;
settings = {
default_layout = "compact";
ui = {
@ -262,7 +264,16 @@ fish_vi_key_bindings
};
programs.wezterm = {
enable = true;
enableZshIntegration = true;
extraConfig = ''
return {
font = wezterm.font("Comic Mono"),
font_size = 12.0,
color_scheme = "Tomorrow Night",
hide_tab_bar_if_only_one_tab = true,
hide_mouse_cursor_when_typing = false,
window_decorations = "RESIZE",
}
'';
};
programs.kitty = {
enable = true;