1
0

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 1 year has passed since last update.

Ubuntuの入れて便利になったツール・設定3選

Last updated at Posted at 2023-09-02

はじめに

会社で別チームに1週間遊びに行ったときに色々便利になるツールを教えてもらったので、今後私がいれるときのメモ用を兼ねて残しておきます

1. terminator

terminatorはキーバインドが利用できるemulatorなので、画面分割が手軽にできるようになります

まずはインストールします

$ sudo apt update
$ sudo apt install terminator

アプリが追加されているので起動します

image.png

画面分割はshift+ctrl + eで垂直分割
shift+ctrl + oで水平分割ができます

2. fzf

fzfはctrl + rでの履歴からのコマンド検索を便利にしてくれます

インストールします

$ git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
$ ~/.fzf/install

ctrl + rをすると補完が効いていい感じになります
alt + cをするとディレクトリを選択してcdまでしてくれます

以下のエラーが出た場合

unknown option: --scheme=history

以下を実行してターミナルを再起動させると動きました

$ sudo apt purge fzf

3. CapsLockをctrlにかえる

これは設定になります

$ sudo vi /etc/default/keyboard

以下の箇所を変更します

XKBOPTIONS=""
↓
XKBOPTIONS="ctrl:nocaps"

PCを再起動するとCapsLockCtrlとして使えるようになります

うまく行かない場合は以下を設定してから再起動をするとできるかもしれません

おわりに

あとはエイリアスをはるとかなり効率よくかいはつができます
Vimももうちょっと使いこなせるようになりたいです

参考

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?