Skip to content

Luminiscental/autumn256.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

autumn256.vim

A 256bit colorscheme for vim or neovim, including customization for lightline or lualine.

Contents

Installation

Install the colorscheme as a plugin, e.g. using vim-plug:

Plug 'Luminiscental/autumn256.vim'

Once installed, you can set the colorscheme in .vimrc or init.vim:

" If necessary, set gui colors
if (has("termguicolors"))
  set termguicolors
else
  set t_Co=256
endif

syntax enable
colorscheme autumn256

and include it in your lightline config:

let g:lightline = {
      \ 'colorscheme': 'autumn256',
      \ ...
      \ }

or in your lualine config:

require'lualine'.setup {
  options = {
    theme = require'autumn256.lualine_theme',
    ...
  },
  ...
}

Screenshots

Example screenshot (viml) Example screenshot (rust) Example screenshot (vimdiff) Example screenshot (viml/lua)