I use gnome-termial most of the time, and the Nord colorscheme works well withat hat.
I sometimes also use Tilda (another terminal emulator), and the Nord colorscheme doesn't work well with that!
I've put then colorscheme nord in my vimrc file. How can I disable nord in Vim only one time?
EDIT:-
~$ cat .vimrc
call plug#begin('~/.vim/plugged')
Plug 'vim-scripts/c.vim'
Plug 'vim-airline/vim-airline-themes'
Plug 'vim-airline/vim-airline'
Plug 'arcticicestudio/nord-vim'
Plug 'scrooloose/nerdtree'
set number
call plug#end()
if &term =="gnome-256color"
colorscheme nord
endif
:colorscheme default,Thats what I needed at the first place.But I have triedif &term == "gnome-256color" colorscheme nord endifAnd when I execute the vim in terminal,Vim doesn't start in nord by default. I am posting the content of my .vimrc file. – Aug 27 '17 at 08:07