repartay / oceanic-next

Oceanic Next theme for neovim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Oceanic-Next.vim

Oceanic-Next.vim is a neovim theme inspired by Oceanic Next for Sublime. It is not a direct port, but uses some colors from the sublime theme, that are fitted to work with neovim and vim8.

For best results, it is suggested that you use the following syntax plugins.

Installation

All major plugin managers for vim/nvim are supported

<PACKAGE_MANAGER> 'mhartington/oceanic-next'

For vim, add the following to your .vimrc.

" Theme
syntax enable
" for vim 7
set t_Co=256

" for vim 8
if (has("termguicolors"))
set termguicolors
endif

colorscheme OceanicNext

For neovim, add the following to your .nvimrc.

" For Neovim 0.1.3 and 0.1.4
let $NVIM_TUI_ENABLE_TRUE_COLOR=1

" Or if you have Neovim >= 0.1.5
if (has("termguicolors"))
 set termguicolors
endif

" Theme
syntax enable
colorscheme OceanicNext

There is an included theme for vim-airline, to use it, just change the airline theme to:

  let g:airline_theme='oceanicnext'

There is a light mode, but it still needs some work. Currently, light mode has issues with cursor, need to tweak the colors a bit for that. Also, the included airline theme could use some work in light mode. Right now it is the exact same as the dark version, I'd like to tweak this a bit. If anyone would like to contribute, I'd be happy to accept a Pull Request.

Configuration

NOTE: 11-28-2016 Italics and Bold has been removed as the theme is generated via Estilo. I will work with the estilo dev in order to enable this again.

Screenshot

Base colors used in the theme.

neovim

vim

Shown here with vim-devicons

About

Oceanic Next theme for neovim

License:Other


Languages

Language:Vim Script 88.0%Language:JavaScript 6.7%Language:CSS 5.2%