Skip to content

Commit

Permalink
Use wezterm terminal emulator (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw authored May 25, 2024
1 parent fe5ad1b commit 9f98cae
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion home/hammerspoon/config/applications.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local applications = {
terminal = {
name = "Alacritty",
name = "Wezterm",
},
browser = {
name = "Firefox",
Expand Down
5 changes: 3 additions & 2 deletions home/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,12 @@ in {
./nix-index.nix
./nixvim
./packages/simon.nix
./zellij.nix
./ssh.nix
./taskwarrior.nix
./tmux.nix
./wezterm.nix
./wireshark.nix
./zellij.nix
./zoxide.nix
./zsh.nix
]
Expand Down Expand Up @@ -96,7 +97,7 @@ in {
vscode-theme = "Dracula";
defaults = {
browser = "firefox";
terminal = "alacritty";
terminal = "wezterm";
};
is-dark-theme = true;
}
Expand Down
5 changes: 5 additions & 0 deletions home/wezterm.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
return {
font = wezterm.font("JetBrains Mono", { weight = "Bold" }),
color_scheme = "nord",
hide_tab_bar_if_only_one_tab = true,
}
6 changes: 6 additions & 0 deletions home/wezterm.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
};
}
1 change: 1 addition & 0 deletions system/darwin/mba/homebrew.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"todoist"
"visual-studio-code"
"vlc"
"wezterm"
"wireshark"
"xquartz"
];
Expand Down

0 comments on commit 9f98cae

Please sign in to comment.