https://www.waveterm.dev/download
brew でもインストールできます
brew install --cask wave
https://wezfurlong.org/wezterm/index.html
brew install --cask wezterm
cd
vi .wezterm.lua
.wezterm.lua を以下の内容で保存します
local wezterm = require 'wezterm'
local config = {}
if wezterm.config_builder then
config = wezterm.config_builder()
end
-- カラー設定
config.color_scheme = 'Dissonance (Gogh)'
-- フォント設定
config.font = wezterm.font_with_fallback {
'Menlo',
'Hiragino Sans',
}
config.font_size = 14
config.cell_width = 1.0
-- ウィンドウサイズ設定
config.initial_cols = 150
config.initial_rows = 52
-- Command + - のフォント変更時にウインドウサイズを変更しない
config.adjust_window_size_when_changing_font_size = false
-- タブがひとつの時はタブバー表示しない
config.hide_tab_bar_if_only_one_tab = true
return config
https://wezfurlong.org/wezterm/colorschemes/d/index.html#dark
brew update
brew cask install hyper
アクティブなタブの横に ▲ をつけて現在アクティブであることをわかりやすくします。
よく使うコマンドを設定ファイルに登録しておいて 「Command + O」 から呼び出して実行することができます
https://github.com/edhuardotierrez/hyper-quickssh
コマンドは ~/.hyper_plugins/hyper-quickssh-config.json に記述します。
https://github.com/jaanauati/hyper-search
ターミナル内を文字列検索できるようにします。
https://github.com/henrikdahl/hyper-statusline
.hyper.js に次のように記述します
plugins: [
'hyper-active-tab' ,
'hyper-quickssh' ,
'hyper-search' ,
'hyper-statusline' ,
],