Skip to content

shaunsingh/doom-vibrant.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

shaunsingh/doom-vibrant.nvim

Features

doom-vibrant.nvim is meant to be a modern colorscheme written in lua for NeoVim that supports a lot of the new features added to NeoVim like built-in LSP and TreeSitter

⚡️ Requirements

  • Neovim >= 0.5.0

🌙 Installation

Install via your favourite package manager:

" If you are using Vim-Plug
Plug 'shaunsingh/doom-vibrant.nvim'
-- If you are using Packer
use 'shaunsingh/doom-vibrant.nvim'

🌓 Usage

Enable the colorscheme:

"Vim-Script:
colorscheme doom
--Lua:
require('doom').set()

To enable the doom theme for Lualine, simply specify it in your lualine settings:

require('lualine').setup {
  options = {
    -- ... your lualine config
    theme = 'doom'
    -- ... your lualine config
  }
}

⚙️ Configuration

Option Default Description
doom_contrast false Make sidebars and popup menus like nvim-tree and telescope have a different background
doom_borders false Enable the border between verticaly split windows visable
doom_disable_background false Disable the setting of background color so that NeoVim can use your terminal background
doom_cursorline_transparent false Set the cursorline transparent/visible
doom_enable_sidebar_background false Re-enables the backgrond of the sidebar if you disabled the background of everything
doom_italic true enables/disables italics
-- Example config in lua
vim.g.doom_contrast = true
vim.g.doom_borders = false
vim.g.doom_disable_background = false
vim.g.doom_italic = false

-- Load the colorscheme
require('doom').set()
" Example config in Vim-Script
let g:doom_contrast = v:true
let g:doom_borders = v:false
let g:doom_disable_background = v:false
let g:doom_italic = v:false

-- Load the colorscheme
colorscheme doom

About

Port of the doom-vibrant theme for neovim

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages