LoginSignup
3
2

More than 1 year has passed since last update.

VSCode のカーソルの色を変更する方法

Last updated at Posted at 2022-12-31

はじめに

カーサの色が文字の色に似ていると、現在のカーサがどこにあるか迷うことがある。
開発環境が変わったときのためにちょっとメモっておく。
image.png

方法

ctrl + shit + pからUser Settingsを開く

image.png

    "workbench.colorCustomizations": {
        "editorCursor.foreground": "#15ff00",
        "terminalCursor.foreground": "#15ff00"
    },

これを追加

image.png

image.png
image.png

これでVSCodeとターミナルのカーサが黄緑色になった。言語、VSCodeのテーマにもよるが、デフォルトが文字と同じ色の白色ならかなり使いにくさを感じる。

参考

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