Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 665 Bytes

INSTALL.md

File metadata and controls

45 lines (32 loc) · 665 Bytes

⚡ Requirements

  • Neovim >= 0.5.0

📦 Installation

Install the theme with your preferred package manager:

packer

use 'getomni/neovim'

vim-plug

Plug 'getomni/neovim', { 'branch': 'main' }

🚀 Usage

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
  }
}