On Wed, Jan 27, 2021 at 02:14:57PM -0800, Gary Johnson wrote:
> On 2021-01-27, meine wrote:
> > Hi,
> >
> > Working on my computer I sometimes use plain TTY and other times a GUI.
> > I would like to set different colorschemes for that in my vimrc.
> >
> > At this moment I have following code, but it doesn't work at all -- vim
> > only uses the nighted_16.
> >
> > if has('gui_running')
> >        set t_Co=256
> >        colorscheme molokai_dark
> >        set guifont=Monospace\ 10
> >        set columns=85 lines=30
> > if has('x11')
> >        set t_Co=256
> >        colorscheme nighted_16
> >        set guifont=Monospace\ 10
> > else
> >        set t_Co=16
> >        colorscheme nighted_16
> > endif
> >
> >
> > Any suggestions on how to improve it?
>
> The code snippet above is missing something to end the first if,
> either an endif, else/endif or elseif.  You probably want to change
> the second if to an elseif.

Many thanks! It now works as intended.

Kind Regards

//meine

-- 
-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_use/YBJt6I4210E9hNYW%40trackstand.

Reply via email to