4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

neovimの背景色にターミナルの背景色を使えるようにする

Last updated at Posted at 2024-08-22

これは何?

  • nvimをアプデしたところ,nvim起動時に背景画像が黒色になってしまった。
  • terminalではSolarized darkを使っているので同じ背景色のままnvimを使う方法を探した。

image.png
image.png
↑nvimを起動すると背景色が変わってしまう。


環境

  • Ubuntu 22.04
  • nvim 0.10.1
  • Gnome Terminal

備考: カラースキームの設定はgnome-terminal-colors-solarized.gitを使用している。

git clone https://github.com/sigurdga/gnome-terminal-colors-solarized.git
cd gnome-terminal-colors-solarized/
./install.sh

修正方法

init.vimに以下を追加したところ,うまくいきました。
この設定をつかうとvimの背景色が透明になる模様。

highlight Normal ctermbg=NONE guibg=NONE  "setting the backgroud color to transparent.

備考: 不要な場合もある

私は会社ではWSLを使っており,その際にはWindows Terminalを使用しています。
Windows Terminalの設定でSolarized Darkの使っているのですが,この場合には設定不要でした。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?