Coder Social home page Coder Social logo

judaew / ronny.nvim Goto Github PK

View Code? Open in Web Editor NEW
16.0 1.0 1.0 105 KB

Neovim/Vim color scheme inspired by Monokai theme

License: MIT License

Lua 96.18% C++ 1.48% Vim Script 2.34%
codedark color-scheme colorscheme lua lualine-theme monokai neovim nvim scheme treesitter vim

ronny.nvim's Introduction

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

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

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!

ronny.nvim's People

Contributors

judaew avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

benson9954029

ronny.nvim's Issues

Can't install with Plug

Trying to install with Plug when I do require('ronny').setup({}) I get this error:
image

Thanks.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.