Skip to content

IroncladDev/osmium

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Osmium

Dark metallic neovim theme

osmium theme

Installation

Using lazy.nvim

{
    "IroncladDev/osmium",
    config = function()
        require("osmium").setup({
            integrations = {
                gitsigns = true,
                telescope = true,
                -- [...other integrations]
            },
            transparent_bg = false,
            show_end_of_buffer = false,
        })

        vim.cmd.colorscheme("osmium")
    end,
}

Using vim.pack (requires neovim-nightly 0.12+)

vim.pack.add({
  { src = "https://github.com/IroncladDev/osmium" },
})

require("osmium").setup({
  -- the configuration options
})

vim.cmd.colorscheme("osmium")

I have not tried installing this with something like packer. AFAIK you have to call the setup function with the desired options

Configuration

require("osmium").setup({
    integrations = { -- optional
        -- all integrations are disabled by default
        -- set to true to enable
        gitsigns = false,
        telescope = false,
        indent_blankline = false,
    },
    transparent_bg = false, -- whether to use a transparent background
    show_end_of_buffer = false, -- whether to show the end of buffer
})

Integrations

Contributing

PRs and issues are welcome. This is a work in progress and will undergo a lot of changes in the near future.

Credits

The project structure was inspired by dracula.nvim and has undergone a lot of mutilation from the original project

About

metallic neovim theme

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages