Skip to content

ZenLian/edgeme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

edgeme

A lua port of edge colorscheme for neovim only.

screenshot

telescope

Prerequisites

  • neovim >= v0.5.0

Configurations

-- specify background, 'dark' or 'light'
vim.o.background = 'dark'

-- default options
-- you don't have to call setup() if you're ok with defaults
require('edgeme').setup {
    -- choose color styles, depends on vim.o.background
    -- dark theme: 'default', 'aura', 'neon'
    -- light theme: 'default'
    style = 'default',
    -- turn italic on/off
    italic = {
        enable = true, -- set to false will disable all italics below
        comment = true,
        todo = false,
        markdown = true,
        parameter = true,
        tags = true, -- tags like html tag names
    },
    diagnostic = {
        -- true to enable diagnostic virtual text color
        colored_virtual_text = false,
    }
}

Limitations

  • only support true color terminals
  • supported plugins are limited, check theme.lua

About

A lua port of [edge](https://github.com/sainnhe/edge) colorscheme for neovim only.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages