set vim background transparent

MatrixVimTerminalVim PluginColor Scheme

Matrix Problem Overview


I am using the Matrix colorscheme along with CSApprox for my terminal vim.

I can not seem to be able to set the background as transparent. I have tried editing the matrix.vim file but it doesn't make it any better.

here is the matrix.vim

" vim:set ts=8 sts=2 sw=2 tw=0:
"
" matrix.vim - MATRIX like colorscheme.
"
" Maintainer: MURAOKA Taro <[email protected]>
" Last Change:  10-Jun-2003.

set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif

let g:colors_name = 'matrix'

hi Comment guifg=#226622
hi Constant guifg=#55ff55
hi Special guifg=#44cc44
hi Identifier guifg=#55ff55
hi Statement guifg=#55ff55 gui=bold
hi PreProc guifg=#339933
hi Type guifg=#55ff55 gui=bold
hi Underlined guifg=#55ff55 gui=underline
hi Error guifg=#55ff55
hi Todo guifg=#113311 gui=none
hi Cursor guifg=#226622
hi lCursor guifg=#226622
hi CursorIM guifg=#226622
hi Directory guifg=#55ff55
hi DiffAdd guifg=#55ff55 gui=none
hi DiffChange guifg=#55ff55 gui=none
hi DiffDelete guifg=#113311 gui=none
hi DiffText guifg=#55ff55 gui=bold
hi ErrorMsg guifg=#55ff55
hi VertSplit guifg=#339933
hi Folded guifg=#44cc44
hi FoldColumn guifg=#44cc44
hi IncSearch guifg=#226622 gui=none
hi LineNr guifg=#44cc44 gui=none
hi ModeMsg guifg=#44cc44
hi MoreMsg guifg=#44cc44
hi NonText guifg=#44cc44 guibg=NONE ctermbg=none
hi Normal guifg=#44cc44 guibg=NONE ctermbg=none
hi Question guifg=#44cc44
hi Search guifg=#113311 gui=none
hi SpecialKey guifg=#44cc44
hi StatusLine guifg=#55ff55 gui=none
hi StatusLineNC guifg=#113311 gui=none
hi Title guifg=#55ff55 gui=bold
hi Visual guifg=#55ff55 gui=none
hi VisualNOS guifg=#44cc44
hi WarningMsg guifg=#55ff55
hi WildMenu guifg=#226622

and my .vimrc file

set nocompatible
filetype off

set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()

Plugin 'gmarik/Vundle.vim'
Plugin 'fatih/vim-go'
Plugin 'vim-airline/vim-airline'
" Plugin 'vim-airline/vim-airline-themes'
Plugin 'airblade/vim-gitgutter'
" Plugin 'altercation/vim-colors-solarized'
Bundle 'morhetz/gruvbox'
Plugin 'tpope/vim-git'
Plugin 'Valloric/YouCompleteMe'
Plugin 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
" Plugin 'flazz/vim-colorschemes'
Plugin 'godlygeek/csapprox'

call vundle#end()

filetype plugin indent on
syntax on
syntax enable

#...
#...
#...
#...
#...

set t_Co=256
colorscheme matrix

if i enter hi Normal guifg=#44cc44 guibg=NONE ctermbg=none in the command prompt, it looks as expected. but not when it's only declared in matrix.vim. i also tried adding it after colorscheme matrix in .vimrc, but it does not help.

How it looks like when first loaded.

enter image description here

How it looks like after i enter command

enter image description here

Matrix Solutions


Solution 1 - Matrix

You don't have to change anything in your colorscheme just add the following to your .vimrc:

hi Normal guibg=NONE ctermbg=NONE

Update:

As Liam mentioned in the comments:

> This line needs to go below the colorscheme in .vimrc

Solution 2 - Matrix

If you load a plugin at line 5 of your .vimrc for example, then if you change line 6, it doesn't mean that Vim load the plugin completely and then run your line 6!!

That's why, you should use autocmd command, because in this case, it ensures that all of your plugins are loaded completely and then your command will run after that!

In this case:

" transparent bg
autocmd vimenter * hi Normal guibg=NONE ctermbg=NONE
" For Vim<8, replace EndOfBuffer by NonText
autocmd vimenter * hi EndOfBuffer guibg=NONE ctermbg=NONE

Now you sure that after all the things are loaded, you are running your commands.

Solution 3 - Matrix

Use this gist. I compile some settings to make vim transparent.

Solution 4 - Matrix

The answers above don't solve all the problems, they change the bg to transparent when we enter vim (hence the "VimEnte" event) but when you source your init.vim file again, the background reverts back (this is because when the file is sourced the VimEnter auto command is not executed).

Instead of directly posting the correct answer, I'll explain how to reach it:

So, First, we need to understand what happens when vim is open:

vi -V10debug.log +q

This will create a debug.log where you can see what auto commands are executed and their order.

> " transparent bg > autocmd vimenter * hi Normal guibg=NONE ctermbg=NONE > " For Vim<8, replace EndOfBuffer by NonText > autocmd vimenter * hi EndOfBuffer guibg=NONE ctermbg=NONE

If we are using this, we see in the log that VimEnter change the bg to NONE (so far its good).

But, and the following command opens vim, then source the vimrc and then exit (for faster finding I have putted some print statements)

vi -V10debug_so.log +'!echo sourcing'  +'source ~/.config/nvim/init.vim' +'!echo sourced' +q

In the new log, we see, after so VimEnter is not called again and the bg is reverted back to theme default.

But, We also can notice when a file is sourced there are some events that occur, we will focus on the following

  1. SourcePre - before sourcing
  2. SourcePost - after sourcing

There the above incomplete solutions can be fixed using the SourcePost event. so the new and correct autocommand is (Final Answer)

    " Workaround for creating transparent bg
    autocmd SourcePost * highlight Normal     ctermbg=NONE guibg=NONE
            \ |    highlight LineNr     ctermbg=NONE guibg=NONE
            \ |    highlight SignColumn ctermbg=NONE guibg=NONE

Always use this in a group, see this for as reference - https://github.com/kalkayan/dotfiles/blob/main/.config/nvim/init.vim

Solution 5 - Matrix

I use macvim, and the hi Normal guibg=NONE ctermbg=NONE don't work for me even I put it after the colorscheme in .vimrc

But I found :set transparency=20 | :set blurradius=90 work quite good for me. From the help of macvim, they do state that this two commands are {not in Vi} and {only in MacVim GUI}.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestioncodingninjaView Question on Stackoverflow
Solution 1 - MatrixGiftZwergrapperView Answer on Stackoverflow
Solution 2 - MatrixSdSaatiView Answer on Stackoverflow
Solution 3 - Matrixfuadnafiz98View Answer on Stackoverflow
Solution 4 - MatrixManish SahaniView Answer on Stackoverflow
Solution 5 - Matrixqili fangView Answer on Stackoverflow