Wednesday, January 27, 2021

color settings for different environments in vimrc?

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?

TIA,

//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 vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/YBHUkOCLl%2BYEFURW%40trackstand.

No comments: