in my init.vim (.vimrc) file i have this:
hi TerminalGreenColor guifg=#6bd676
function! EchoInitVimReloadedSuccessfully()
echon " -- [ "
echohl Identifier
echon "init.vim"
echohl None
echon " ] reloaded "
echohl TerminalGreenColor
echon "successfully"
echohl None
echon " -- "
endfunction
" reload vim with init.vim
nnoremap <C-R> :source $init_vim_path<CR> :call EchoInitVimReloadedSuccessfully()<CR>
when i press CTRL + R it reloads the init.vim file successfully and echoes in the vim command-line row that it worked.
proof that is working:
but my problem is that the word successfully its not colored with TerminalGreenColor(#6bd676)...
any ideas? thanks in advance.

NVIM v0.5.0andalacritty 0.8.0. Have you tried another terminal emulator? – statox Jun 08 '21 at 12:40xfce-terminal(didnt work) and right now i tried inalacrittyand it didnt work. – alexzander Jun 08 '21 at 13:24:verbose highlight TerminalGreenColorsay? And what happen if you run manually:echohl TerminalGreenColorthen:echo 'hello'? Also have you tried changing the properties ofTerminalGreenColorto have an idea if the issue comes from the highlighting group itself or from somewhere else? – statox Jun 08 '21 at 14:08:verbose highlight TerminalGreenColor->TerminalGreenColor xxx cleared– alexzander Jun 08 '21 at 14:18init.vim– alexzander Jun 08 '21 at 14:19:verbose highlight TerminalGreenColoris supposed to say something likeTerminalGreenColor xxx guifg=#6bd676 Last set from ~/init.vim line XXXhere it looks like something cleared your highlighting group which is why you don't see color changes so you're up for some debugging – statox Jun 08 '21 at 14:39:colorscheme commandor:syntaxcommand – Christian Brabandt Jun 08 '21 at 14:46echohl Nonebefore? but if dont put that still doesnt work. – alexzander Jun 08 '21 at 17:38