- Neovim >= 0.5.0
Install the theme with your preferred package manager:
use 'getomni/neovim'
Plug 'getomni/neovim', { 'branch': 'main' }
Enable the colorscheme:
" Vim Script
colorscheme omni
-- Lua
vim.cmd[[colorscheme omni]]
To enable the Omni
theme for Lualine
, simply specify it in your lualine settings:
require('lualine').setup {
options = {
-- ... your lualine config
theme = 'omni'
-- ... your lualine config
}
}