## 背景 [[illuminate.vim]]はデフォルトで『カーソル配下の単語』と『他に出現する単語』の両方をハイライトする。しかし、状況によってはカーソル付近が見にくくなることがあり、それを防ぎたい。 ## 方法 `under_cursor = false` を指定する。 ```lua config = function() require("illuminate").configure({ under_cursor = false, }) end, ```