SkillAgentSearch skills...

Ronny.nvim

Neovim/Vim color scheme inspired by Monokai theme

Install / Use

/learn @judaew/Ronny.nvim
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<div align="center">

ronny.nvim

</div>

ronny.nvim is a dark colorscheme for Neovim, which mostly was inspired by the Monokai originally created by Wimem Hazenberg.

ronny.nvim

Installation

Install via package manager (e.g. vim-plug, packer.nvim or lazy.nvim):

<details><summary>vim-plug</summary>
call plug#begin()
Plug 'judaew/ronny.nvim'
call plug#end()

colorscheme ronny
lua require('ronny').setup()
</details> <details><summary>packer.nvim</summary>
return require("packer").startup(function(use)
    use {
        "judaew/ronny.nvim",
        config = function()
            vim.cmd.colorscheme("ronny")
            require("ronny").setup()
        end
    }
end)
</details> <details><summary>lazy.nvim</summary>
require("lazy").setup({
    {
        "judaew/ronny.nvim",
        priority = 1000,
        config = function()
            vim.cmd.colorscheme("ronny")
            require("ronny").setup()
        end
    }
})
</details>

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

Extra folder

Something is broken but I know how to fix it!

Pull requests and issues are welcome! Feel free to send one with an explanation!

Related Skills

View on GitHub
GitHub Stars16
CategoryDevelopment
Updated4mo ago
Forks2

Languages

Lua

Security Score

92/100

Audited on Nov 2, 2025

No findings