judaew/ronny.nvim

github github
colorschemetreesitter-colorschemes
stars 16
issues 0
subscribers 1
forks 1
CREATED

2023-08-31

UPDATED

7 months ago


ronny.nvim

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):

call plug#begin()
Plug 'judaew/ronny.nvim'
call plug#end()

colorscheme ronny
lua require('ronny').setup()
return require("packer").startup(function(use)
    use {
        "judaew/ronny.nvim",
        config = function()
            vim.cmd.colorscheme("ronny")
            require("ronny").setup()
        end
    }
end)
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

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!