tags

[3]
[3]
[1]
[1]

オシャレで拡張可能な次世代ターミナルソフト Wezterm / Warp / Hyper

● Wezterm

https://wezfurlong.org/wezterm/index.html

・Wezterm のインストール

brew install --cask wezterm

・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

● warp

https://www.warp.dev/

● Hyper

https://hyper.is/

● ターミナルソフト Hyperのインストール方法 (MacOS Catalina 10.15 対応)

brew update
brew cask install hyper

● おすすめプラグイン

● hyper-active-tab

アクティブなタブの横に ▲ をつけて現在アクティブであることをわかりやすくします。

● hyper-quickssh

よく使うコマンドを設定ファイルに登録しておいて 「Command + O」 から呼び出して実行することができます
https://github.com/edhuardotierrez/hyper-quickssh

コマンドは ~/.hyper_plugins/hyper-quickssh-config.json に記述します。

● hyper-search

https://github.com/jaanauati/hyper-search
ターミナル内を文字列検索できるようにします。

● hyper-statusline

https://github.com/henrikdahl/hyper-statusline

● プラグインの指定方法

.hyper.js に次のように記述します

  plugins: [
    'hyper-active-tab' ,
    'hyper-quickssh' ,
    'hyper-search' ,
    'hyper-statusline' ,
  ],

No.211
02/27 12:55

edit