Glam Prestige Journal

Bright entertainment trends with youth appeal.

im trying to set this theme for vim: .

I have installed it:

  1. I added the Plug to .vimrc

Plug 'morhetz/gruvbox'

  1. From a opened vim editor I executed the command: :PlugInstall

enter image description here

And is everything installed.

After that I set colors in ~/.vim/colors:enter image description here

And plugin theme data seems to be in :

~/.vim/plugged

enter image description here

So I open a test file and I get this:

enter image description here

Instead of something like:

enter image description here

I dont really know what im doing wrong.

My current .vimrc is :

"CONFIGURACIONES BASICAS"
"syntax on
"set number
"set background=dark
"set cursorcolumn
"set ignorecase
"set showmatch
"set hlsearch
"set history=1000
"CONFIFURACIONES DE PLUGINS"
call plug#begin()
Plug 'preservim/NERDTree'
Plug 'SirVer/ultisnips', {'for': ['sh', 'python', 'markdown']}
Plug 'honza/vim-snippets', {'for': ['sh', 'python', 'markdown']}
Plug 'ervandew/supertab'
Plug 'morhetz/gruvbox'
call plug#end()
let g:SuperTabDefaultCompletionType = '<C-n>'
let g:SuperTabCrMapping = 0
let g:UltiSnipsExpandTrigger = '<tab>'
let g:UltiSnipsJumpForwardTrigger = '<tab>'
let g:UltiSnipsJumpBackwardTrigger = '<s-tab>'
let g:ycm_key_list_select_completion = ['<C-j>', '<C-n>', '<Down>']
let g:ycm_key_list_previous_completion = ['<C-k>', '<C-p>', '<Up>']
let g:UltiSnipsEditSplit="vertical"
let g:UltiSnipsListSnippets="<c-t>"

PD: I have commented CONFIGURACIONES BASICAS section of my .vimrc because I thought it cloud have been some conflicts between plugins, but not seems that.

Reset to default

Know someone who can answer? Share a link to this question via email, Twitter, or Facebook.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy