LoginSignup
2
0

More than 1 year has passed since last update.

vscode vim モードごとの色替え

Last updated at Posted at 2022-03-09

必要な拡張機能

設定

#vscodevim\\.vim\\.primary[aria-labelの部分はヘルプ > 開発者ツールの切り替えで確認しました。

setting.json
"customizeUI.stylesheet": {
    "#vscodevim\\.vim\\.primary[aria-label=\"-- NORMAL --\"]": "color: #2c2e34 !important; background-color: #85d3f2 !important;",
    "#vscodevim\\.vim\\.primary[aria-label=\"-- INSERT --\"]": "color: #2c2e34 !important; background-color: #a7df78 !important;",
    "#vscodevim\\.vim\\.primary[aria-label^=\"-- VISUAL\"]": "color: #2c2e34 !important; background-color: #e7c664 !important;",
    "#vscodevim\\.vim\\.primary[aria-label^=\":\"]": "background-color: #7f8490 !important;",
},

結果

normal_mode.PNG insert_mode.PNG visual_mode.PNG com_mode.PNG

参考

vscode-powerline

2022/12/17追記
こんなやつもあるみたい
https://github.com/pcwalton/vscode-powerline

2
0
1

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