3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WSLのターミナルにHyperを導入する

Last updated at Posted at 2019-04-12

Hyperとは

見た目がかっこいいターミナル
Windowsのデフォルトのターミナルがダサいので入れてみました

Hyperのインストール

https://hyper.is/
からインストーラをダウンロードし、よしなにインストールする

シェルとホームディレクトリの設定

設定するとHyperが立ち上がらなくなったりしたが、端末再起動で解決した

    shell: 'C:\\Windows\\System32\\wsl.exe', //デフォルトのシェルをWSLのBashにする
    shellArgs: ['~'], //これがないとHyper導入前と後でホームディレクトリが変わってしまう
    ...

    env: {LANG: 'ja_JP.UTF-8'}, //日本語の文字化けを防ぐ

プラグインの導入

hyperterm-materialがオススメみたいだったので、Ctrl + ,.hyper.jsを開き、

  plugins: ['hyperterm-material'],

と記述
以下のような見た目になった
image.png

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?