Estoy tratando de conseguir una "solarizar oscuro" colorscheme para trabajar con Vim en android. Vim sí funciona, y el propio plugin se ejecuta, pero el colorscheme sale mal. Estoy usando jackpal.androidterm de la aplicación (normalmente el primero que vea si usted busca "terminal" en google play). He tratado de exportación de casi cada tipo de terminal, tanto a través de la aplicación y a través de una secuencia de comandos y tengo la aplicación de la colorscheme ajustado a "solarizar oscuro", sin embargo, el fondo no se muestra correctamente.
Aquí están las Capturas de pantalla.
Debido a las limitaciones en los nuevos usuarios, lo pegué en OneDrive. (Ellos fueron empacadas en un documento debido a un extraño error al cargar con el Dolphin.)
También, vale la pena señalar que solarizar "obras" en el Terminal de Android cuando TERM=xterm-256color. Sin embargo, la limitada solarizar colorset tiene muy poco contraste y es simplemente feo. Además, ambos sistemas tienen la misma y plugins .vimrc:
(~/.vimrc)
syntax on
set number
set ruler
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'altercation/vim-colors-solarized'
Plugin 'bronson/vim-trailing-whitespace'
" Unite
" " depend on vimproc
" " ------------- VERY IMPORTANT ------------
" " you have to go to .vim/plugin/vimproc.vim and do a ./make
" " -----------------------------------------
Plugin 'Shougo/vimproc.vim'
Plugin 'Shougo/unite.vim'
Plugin 'rking/ag.vim'
Plugin 'airblade/vim-gitgutter'
Plugin 'tpope/vim-fugitive'
Plugin 'junegunn/vim-easy-align'
" All of your Plugins must be added before the following line
call vundle#end() " required
" filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
filetype plugin on
" "
" " Brief help
" " :PluginList - lists configured plugins
" " :PluginInstall - installs plugins; append `!` to update or just
" :PluginUpdate
" " :PluginSearch foo - searches for foo; append `!` to refresh local cache
" " :PluginClean - confirms removal of unused plugins; append `!` to
" auto-approve removal
" "
" " see :h vundle for more details or wiki for FAQ
" " Put your non-Plugin stuff after this line
" -- solarized personal conf
set background=dark
try
colorscheme solarized
catch
endtry
" Highlight 80th column
if (exists('+colorcolumn'))
set colorcolumn=80
highlight ColorColumn ctermbg=9
endif
" bindings for unite--------------------------------------------------
let g:unite_source_history_yank_enable = 1
try
let g:unite_source_rec_async_command='ag --nocolor --nogroup -g ""'
call unite#filters#matcher_default#use(['matcher_fuzzy'])
catch
endtry
" search a file in the filetree
nnoremap <space><space> :split<cr> :<C-u>Unite -start-insert file_rec/async<cr>
" reset not it is <C-l> normally
:nnoremap <space>r <Plug>(unite_restart)
" Bindings for Ag ------------------------------------------------------------
" --- type ° to search the word in all files in the current dir
nmap ° :Ag <c-r>=expand("<cword>")<cr><cr>
nnoremap <space>/ :Ag
" Easy align interactive--------------------------------------------------
vnoremap <silent> <Enter> :EasyAlign<cr>