nvim-nyctophilia is a set of Neovim colorschemes for nightlovers.
- This plugin has been developed on and for Linux following open source philosophy.
- Colorschemes
- nox, umbra, nebula, tenebra
- Integrations
Packer
use 'javiorfo/nvim-nyctophilia'
Lazy
{
'javiorfo/nvim-nyctophilia',
lazy = false,
init = function()
-- Available themes: nox, umbra, nebula and tenebra
vim.cmd[[colorscheme umbra]]
end
}
- Set up init.lua
-- Available themes: nox, umbra, nebula and tenebra
vim.cmd[[colorscheme umbra]]
- If using LSP servers disable semantics, otherwise syntax might not look properly
-- Example with C language
require'lspconfig'.clangd.setup {
on_attach = function(client, _)
client.server_capabilities.semanticTokensProvider = nil
end
}