ronny.nvim
ronny.nvim copied to clipboard
Neovim/Vim color scheme inspired by Monokai theme
ronny.nvim
ronny.nvim is a dark colorscheme for Neovim, which mostly was inspired by the Monokai originally created by Wimem Hazenberg.

Installation
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
}
})
Usage
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.
Supported Plugins
- [x] LSP/Diagnostics

- [x] TreeSitter
- [x] Telescope

- [x] NvimTree

- [x] nvim-cmp and nvim-compe
- [ ] Conquer of Completion (coc.nvim)

- [x] Which Key
- [x] Git Gutter and Git Signs
- [x] Lualine

- [ ] bufferline.nvim
- [ ] barbar.nvim
- [x] Indent Blankline
Extra folder
- kitty color scheme, go.
Something is broken but I know how to fix it!
Pull requests and issues are welcome! Feel free to send one with an explanation!