Hi guys o/
Recently I’ve been annoying by the neovim configuration in my home-manager. I did wish set the gruvbox colorscheme, but without the background color. Ever i try make this on my config, the background still keep there. I tried all possible ways and not works.
I left a specific file for this, and for now this is the code:
{ config, pkgs, ... }:
{
programs.nvim = {
enable = true;
vimAlias = false;
plugins = with pkgs.vimPlugins; [
vim-nix
vim-polyglot
gruvbox
];
extraConfig = ''
colorscheme gruvbox
:hi Normal guibg=none ctermbg=none
:hi NonText guibg=none ctermbg=none
'';
};
}
Someone can help?