vim icon indicating copy to clipboard operation
vim copied to clipboard

[DONT MERGE] proposal: rewrote colorscheme to Lua

Open DrKJeff16 opened this issue 3 months ago • 4 comments

Description

[!CAUTION] @skbolton THIS IS A PROPOSAL

2025-10-04-174350_hyprshot

I have rewritten the colorscheme to Lua. My proposal here is to either split this into a new branch OR (prefferably) create a new port.

I'm new to making colorschemes specifically, so I'd like to know what you think.

Setup is now changed. I'll use lazy.nvim as an example:

{
    'embark-theme/vim',
    lazy = false,
    priority = 1000,
    name = 'embark',
    config = function()
        require('embark').setup({ italic = false }) -- This is all I have set up thus far
        vim.cmd.colorscheme('embark')
    end,
}

DrKJeff16 avatar Oct 04 '25 23:10 DrKJeff16