- Telescope
- Nvim Tree
- Tresitter
- Lsp
- Lsp saga
- Coc
- Bufferline
- Illuminate
- Diff
- Git signs
- Git gutter
- Lualine
- Indent-BlankLine
You can install this plugin with packer:
use { 'levuaska/levuaska.nvim', as='levuaska' }Or with vim-plug:
Plug 'levuaska/levuaska.nvim', { 'as': 'levuaska' }To active the theme call this in your neovim config:
locallevuaska=require('levuaska')
levuaska.setup({ nvim_tree= { contrast=true } }) -- or use contrast = false to not apply contrastOr with vim script:
colorscheme levuaskaIt will set automatically the
vim.opt.termguicolorsto true
Place this in your lualine config:
locallualine=require('lualine')
lualine.setup {
options= {
theme='levuaska',
},
}If you want to get the colors into a lua dictionary
locallevuaska=require('levuaska.core')
localcolors=levuaska.get_colors()
