Skip to content

🌳 A modern low-contrast colorscheme written in lua for NeoVim

License

Notifications You must be signed in to change notification settings

bincat233/seoul256.nvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🎨 seoul256.nvim

Screen Shot 2021-06-01 at 5 22 20 PM

image

✨ Features

seoul256.nvim is meant to be a modern low-contrast colorscheme written in lua for NeoVim that supports a lot of the new features added to NeoVim like built-in LSP and TreeSitter

⚡️ Requirements

  • Neovim >= 0.5.0

📦 Installation

Install via your favourite package manager:

-- If you are using lazy.nvim
{"bincat233/seoul256.nvim"}
" If you are using Vim-Plug
Plug 'bincat233/seoul256.nvim'
-- If you are using Packer
use 'bincat233/seoul256.nvim'

🚀 Usage

Enable the colorscheme:

"Vim-Script:
colorscheme seoul256
--Lua:
require('seoul256')
-- or:
vim.g.colors_name = 'seoul256'

To enable the seoul256 theme for Lualine, simply specify it in your lualine settings:

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

⚙️ Configuration

Option Default Description
seoul256_italic_comments false Make comments italic
seoul256_italic_keywords false Make keywords italic
seoul256_italic_functions false Make functions italic
seoul256_italic_string true Make string italic
seoul256_italic_variables false Make variables and identifiers italic
seoul256_contrast true Make sidebars and popup menus like nvim-tree and telescope have a different background
seoul256_borders false Enable the border between verticaly split windows visable
seoul256_disable_background false Disable the setting of background color so that NeoVim can use your terminal background
seoul256_hl_current_line true Enable highlighting for the current line
-- Example config in lua
vim.g.seoul256_italic_comments = true
vim.g.seoul256_italic_keywords = true
vim.g.seoul256_italic_functions = true
vim.g.seoul256_italic_variables = false
vim.g.seoul256_contrast = true
vim.g.seoul256_borders = false
vim.g.seoul256_disable_background = false
vim.g.seoul256_hl_current_line = true

-- Load the colorscheme
require('seoul256')
" Example config in Vim-Script
let g:seoul256_italic_comments = v:true
let g:seoul256_italic_keywords = v:true
let g:seoul256_italic_functions = v:true
let g:seoul256_italic_variables = v:false
let g:seoul256_contrast = v:true
let g:seoul256_borders = v:false
let g:seoul256_disable_background = v:false
let g:seoul256_hl_current_line = v:true

-- Load the colorsheme
colorscheme seoul256

🗺️ Roadmap

Since I can't find a job and have nothing else to do now and I really really like this theme, I will actively maintain this branch.

  • Support light theme
  • Dynamically generate accent colors that just simply darker or lighter
  • Find a way to change options in running
  • Add option to adjust contrast
  • Add option to adjust base brightness
  • Port the 256 color mode from the original vim theme

Also, I will continue to add plug-in support. If anyone has any ideas, please feel free to report issues.

🙏 Thanks

This fork is based on the work of shaunsingh which is also based off of the seoul256 Theme for Vim , thanks to them for bringing this beautiful theme to NeoVim.

About

🌳 A modern low-contrast colorscheme written in lua for NeoVim

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 100.0%