Skip to content

ibootrc/archie.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neovim theme based on the poimandres neovim theme

Plugin Support

📦 Installation

Install with lazy.nvim:

-- Lua

{ 
    'ibootrc/archie.nvim',
        lazy = false,
        priority = 1000,
        config = function()
            require('archie').setup {
                -- leave this setup function empty for default config
                    -- or refer to the configuration section
                    -- for configuration options
            }
    end,

        -- optionally set the colorscheme within lazy config
            init = function()
            vim.cmd("colorscheme archie")
            end
}
Install with packer:

packer.nvim

-- Lua

use { 
    'ibootrc/archie.nvim',
        config = function()
            require('archie').setup {
                -- leave this setup function empty for default config
                    -- or refer to the configuration section
                    -- for configuration options
            }
    end
}
Install with vim-plug:

vim-plug

" Vim Script

Plug 'ibootrc/archie.nvim'

lua << EOF
require('archie').setup {

}
EOF

🚀 Usage

Enable the colorscheme:

IMPORTANT! The setup function has to be invoked before the colorscheme is set!

-- Lua

vim.cmd('colorscheme archie')
" Vim Script

colorscheme archie

⚙️ Configuration:

Setup function options:

require('archie').setup {
    bold_vert_split = false, -- use bold vertical separators
        dim_nc_background = false, -- dim 'non-current' window backgrounds
        disable_background = false, -- disable background
        disable_float_background = false, -- disable background for floats
        disable_italics = false, -- disable italics
}

To enable archie for Lualine, just set the theme in your Lualine configuration:

require('lualine').setup {
    options = {
        -- ... your lualine config
            theme = 'archie'
            -- ... your lualine config
    }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published