Vim Theme Save

An ambitious theme for vim

Project README

Embark Logo

An ambitious Vim theme.

"Man cannot discover new oceans unless he has the courage to lose sight of the shore. - Andre Gide"

embark screenshot

bold and shit

Getting Started

At this time only terminals supporting truecolors will work. Make sure you have set termguicolors in your vimrc

First install using your plugin manager. Rename package to embark using your plugin manager's built in facilities to do so.

packer.nvim

use { 'embark-theme/vim', as = 'embark' }

vim-plug

Plug 'embark-theme/vim', { 'as': 'embark', 'branch': 'main' }

Then set embark as colorscheme.

Vimscript

colorscheme embark

Lua for neovim

vim.cmd('colorscheme embark')

For packer users the colorscheme can be placed in the config callback.

use {
  'embark-theme/vim',
  as = 'embark',
  config = function()
    vim.cmd('colorscheme embark')
  end
}

Lightline support

A lightline theme is also available. Just set your colorscheme to embark.

let g:lightline = {
      \ 'colorscheme': 'embark',
      \ }

Airline support

Airline should just pick up on theme automatically, but if there is an issue with this it can be set manually. let g:airline_theme = 'embark'

Lualine support

Lualine should pick up the theme with the auto setting, or you can set it manually.

require('lualine').setup {
  options = {
    theme = 'embark',
  }
}

Configuration

Embark offers a few configuration values to control features. Setting values to 1 will turn the feature on.

Italics - Make sure your terminal is set up to handle them. See this for help getting italics and true color working in your terminal.

let g:embark_terminal_italics = 1


See other available ports at https://embark-theme.github.io/

Open Source Agenda is not affiliated with "Vim Theme" Project. README Source: embark-theme/vim
Stars
632
Open Issues
0
Last Commit
2 months ago
Repository
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating