From 5ec55f35744239e6a25ed651c5b87335a04653b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yaroslav=20de=20la=20Pe=C3=B1a=20Smirnov?= Date: Tue, 20 Sep 2022 19:09:56 +0300 Subject: Edit colorscheme to allow for non-"opaque" bg With this option, now it is possible to not set the text background and use instead the terminal's one background, for example, if one wants to use a terminal with transparency. --- dotfiles/.config/nvim/init.vim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'dotfiles/.config/nvim') diff --git a/dotfiles/.config/nvim/init.vim b/dotfiles/.config/nvim/init.vim index af02383..f2525d3 100644 --- a/dotfiles/.config/nvim/init.vim +++ b/dotfiles/.config/nvim/init.vim @@ -8,6 +8,8 @@ if empty(glob('~/.local/share/nvim/site/autoload/plug.vim')) autocmd VimEnter * PlugInstall --sync | source $MYVIMRC endif +" TODO: bind to insert datetime + call plug#begin('~/.local/share/nvim/site/plugged') Plug 'junegunn/goyo.vim' Plug 'PotatoesMaster/i3-vim-syntax' @@ -47,8 +49,9 @@ call plug#end() set number " Colors - colorscheme ultramar let g:ultramar_italic=1 + let g:ultramar_opaque_bg=0 + colorscheme ultramar if $COLORSCHEME == "light" set background=light endif -- cgit v1.2.3