setting up wezterm
This commit is contained in:
parent
0670fa4d53
commit
b4a2e04913
17
home.nix
17
home.nix
|
@ -71,7 +71,9 @@ with import ./modules/neovim-config.nix { inherit pkgs lib fromGitHub; };
|
||||||
# fish config
|
# fish config
|
||||||
fish_greeting = "✨ heya ${config.home.username}, welcome to $(hostnamectl --pretty) ~";
|
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 = {
|
dconf.settings = {
|
||||||
"org/gnome/mutter".center-new-windows = true;
|
"org/gnome/mutter".center-new-windows = true;
|
||||||
"org/gnome/desktop/sound".allow-volume-above-100-percent = 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.home-manager.enable = true;
|
||||||
programs.zellij = {
|
programs.zellij = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableFishIntegration = true;
|
# enableFishIntegration = true;
|
||||||
settings = {
|
settings = {
|
||||||
default_layout = "compact";
|
default_layout = "compact";
|
||||||
ui = {
|
ui = {
|
||||||
|
@ -262,7 +264,16 @@ fish_vi_key_bindings
|
||||||
};
|
};
|
||||||
programs.wezterm = {
|
programs.wezterm = {
|
||||||
enable = true;
|
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 = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue