ronny.nvim is a dark colorscheme for Neovim, which mostly was inspired by the Monokai originally created by Wimem Hazenberg.
Install via package manager (e.g. vim-plug, packer.nvim or lazy.nvim):
vim-plug
call plug#begin()
Plug 'judaew/ronny.nvim'
call plug#end()
colorscheme ronny
lua require('ronny').setup()
packer.nvim
return require("packer").startup(function(use)
use {
"judaew/ronny.nvim",
config = function()
vim.cmd.colorscheme("ronny")
require("ronny").setup()
end
}
end)
lazy.nvim
require("lazy").setup({
{
"judaew/ronny.nvim",
priority = 1000,
config = function()
vim.cmd.colorscheme("ronny")
require("ronny").setup()
end
}
})
require("ronny").setup({
display = {
-- Enable original Monokai colors
monokai_original = false,
-- Highlight only LineNr (current line number) for cursorline
-- option. This also enables cursorline (:set cursorline)
only_CursorLineNr = true,
-- Highlight LineNr for relativenumbers. This also enables
-- relativenumbers option (:set relativenumbers)
hi_relativenumber = false,
-- Highlight unfocused windows when using :split or :vsplit
hi_unfocus_window = false,
-- Highlight formatted @text (e.g., italic, strong) in yellow
-- in addition to font attributes to make the text more visible
hi_formatted_text = true,
-- Highlight comment in italics
hi_comment_italic = true
}
})
Additional optional config can be located in config.lua.
- LSP/Diagnostics
- TreeSitter
- Telescope
- NvimTree
- nvim-cmp and nvim-compe
- Conquer of Completion (coc.nvim)
- Which Key
- Git Gutter and Git Signs
- Lualine
- bufferline.nvim
- barbar.nvim
- Indent Blankline
Pull requests and issues are welcome! Feel free to send one with an explanation!