Dark metallic neovim theme
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
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
})PRs and issues are welcome. This is a work in progress and will undergo a lot of changes in the near future.
The project structure was inspired by dracula.nvim and has undergone a lot of mutilation from the original project
