Skip to content

fross100/adna.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

adna.nvim

A dark, vibrant Neovim colorscheme derived from the Adna theme, featuring cool teal accents, bright pink foreground, and a deep charcoal background optimized for long coding sessions.

Features

  • Full Tree-sitter syntax highlighting support
  • Native LSP diagnostic highlights
  • 16-color terminal palette mapped to theme colors
  • Compatible with Neovim 0.8+ (requires Lua API support)
  • Preconfigured highlights for popular plugins:
    • NvimTree
    • Telescope
    • LSP Signatures
    • Git Signs
  • Automatic dark mode detection (sets background = "dark")

Installation

lazy.nvim

Add the following to your Neovim plugin configuration (e.g., ~/.config/nvim/lua/plugins/adna.lua):

{
  "fross100/adna.nvim",
  lazy = false,
  priority = 1000,
  config = function()
    vim.cmd("colorscheme adna")
  end,
}

packer.nvim

use({
  "fross100/adna.nvim",
  config = function()
    vim.cmd("colorscheme adna")
  end,
})

vim-plug

Add to your ~/.config/nvim/init.vim or ~/.vimrc:

Plug 'fross100/adna.nvim'

Then apply the colorscheme after plugin load:

colorscheme adna

Usage

Enable the colorscheme in your Neovim configuration:

-- In your init.lua or plugin config
vim.cmd("colorscheme adna")

Or toggle it live in Neovim:

:colorscheme adna

License

MIT License (see LICENSE for details)

Credits

About

A beautiful Neovim colorscheme with cyan and pink accents from the Adna theme

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages