diff --git a/CHANGELOG.md b/CHANGELOG.md index b223fb8..6ea43de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [2.2.0](https://github.com/pauchiner/pastelnight.nvim/compare/v2.1.0...v2.2.0) (2024-02-05) + + +### Features + +* **theme:** add barbecue support ([c8ce539](https://github.com/pauchiner/pastelnight.nvim/commit/c8ce539346608c0c78b69cfe73e447a1d80c3ff7)) +* **theme:** add lightline support ([fcc2ef2](https://github.com/pauchiner/pastelnight.nvim/commit/fcc2ef22fef368510960a036ce4a5c724f40d4d4)) + ## [2.1.0](https://github.com/pauchiner/pastelnight.nvim/compare/v2.0.0...v2.1.0) (2024-02-04) diff --git a/doc/pastelnight.nvim.txt b/doc/pastelnight.nvim.txt index 5c7ac31..6fb6b71 100644 --- a/doc/pastelnight.nvim.txt +++ b/doc/pastelnight.nvim.txt @@ -1,4 +1,4 @@ -*pastelnight.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 February 04 +*pastelnight.nvim.txt* For Neovim >= 0.8.0 Last change: 2024 February 05 ============================================================================== Table of Contents *pastelnight.nvim-table-of-contents* @@ -105,6 +105,36 @@ LUA < +OTHER SUPPORTED PLUGINS + + +BARBECUE + +>lua + require('barbecue').setup { + theme = 'pastelnight', + } +< + + +LUALINE + +>lua + require('lualine').setup { + options = { + theme = 'pastelnight' + } + } +< + + +LIGHTLINE + +>vim + let g:lightline = {'colorscheme': 'pastelnight'} +< + + CONFIGURATION *pastelnight.nvim-configuration* diff --git a/lua/lightline/colorscheme/pastelnight.lua b/lua/lightline/colorscheme/pastelnight.lua index dcf2e8a..f4d20df 100644 --- a/lua/lightline/colorscheme/pastelnight.lua +++ b/lua/lightline/colorscheme/pastelnight.lua @@ -3,37 +3,85 @@ local colors = require('pastelnight.colors').setup({ transform = true }) local pastelnight = {} pastelnight.normal = { - left = { { colors.bg, colors.purple, 'bold' }, { colors.purple300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, - right = { { colors.bg, colors.purple, 'bold' }, { colors.purple300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, + left = { + { colors.bg, colors.purple, 'bold' }, + { colors.purple300, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, + right = { + { colors.bg, colors.purple, 'bold' }, + { colors.purple300, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, middle = { { colors.base300, colors.bg_statusline } }, warning = { { colors.black, colors.warning } }, error = { { colors.black, colors.error } }, } pastelnight.insert = { - left = { { colors.bg, colors.blue, 'bold' }, { colors.blue300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, - right = { { colors.bg, colors.blue, 'bold' }, { colors.blue300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, + left = { + { colors.bg, colors.blue, 'bold' }, + { colors.blue300, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, + right = { + { colors.bg, colors.blue, 'bold' }, + { colors.blue300, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, } pastelnight.visual = { - left = { { colors.bg, colors.yellow, 'bold' }, { colors.yellow300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, - right = { { colors.bg, colors.yellow, 'bold' }, { colors.yellow300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, + left = { + { colors.bg, colors.yellow, 'bold' }, + { colors.yellow300, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, + right = { + { colors.bg, colors.yellow, 'bold' }, + { colors.yellow300, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, } pastelnight.replace = { - left = { { colors.bg, colors.green, 'bold' }, { colors.green300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, - right = { { colors.bg, colors.green, 'bold' }, { colors.green300, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, + left = { + { colors.bg, colors.green, 'bold' }, + { colors.green300, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, + right = { + { colors.bg, colors.green, 'bold' }, + { colors.green300, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, } pastelnight.inactive = { - left = { { colors.bg_statusline, colors.purple, 'bold' }, { colors.base400, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, - right = { { colors.bg_statusline, colors.purple, 'bold' }, { colors.base400, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, + left = { + { colors.bg_statusline, colors.purple, 'bold' }, + { colors.base400, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, + right = { + { colors.bg_statusline, colors.purple, 'bold' }, + { colors.base400, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, middle = { { colors.base300, colors.bg_statusline } }, } pastelnight.tabline = { - left = { { colors.bg_statusline, colors.purple, 'bold' }, { colors.base400, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, - right = { { colors.bg_statusline, colors.purple, 'bold' }, { colors.base400, colors.bg_statusline }, { colors.base400, colors.bg_statusline }, }, + left = { + { colors.bg_statusline, colors.purple, 'bold' }, + { colors.base400, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, + right = { + { colors.bg_statusline, colors.purple, 'bold' }, + { colors.base400, colors.bg_statusline }, + { colors.base400, colors.bg_statusline }, + }, tabsel = { { colors.purple, colors.bg }, { colors.base400, colors.bg } }, middle = { { colors.base300, colors.bg_statusline } }, }