mirror of
https://github.com/gabehf/base46.git
synced 2026-03-09 23:48:16 -07:00
add integration for bufferline, nvim-webdevicons | fix https://github.com/NvChad/NvChad/issues/1025
This commit is contained in:
parent
63a749b728
commit
fb9d86d9cd
2 changed files with 133 additions and 0 deletions
103
lua/integrations/bufferline.lua
Normal file
103
lua/integrations/bufferline.lua
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
local colors = require("base16").get_colors "base_30"
|
||||
|
||||
return {
|
||||
|
||||
BufferLineBackground = {
|
||||
fg = colors.grey_fg,
|
||||
bg = colors.black2,
|
||||
},
|
||||
|
||||
-- buffers
|
||||
BufferLineBufferSelected = {
|
||||
fg = colors.white,
|
||||
bg = colors.black,
|
||||
bold = true,
|
||||
},
|
||||
|
||||
BufferLineBufferVisible = {
|
||||
fg = colors.light_grey,
|
||||
bg = colors.black2,
|
||||
},
|
||||
|
||||
-- for diagnostics = "nvim_lsp"
|
||||
BufferLineError = {
|
||||
fg = colors.light_grey,
|
||||
bg = colors.black2,
|
||||
},
|
||||
BufferLineErrorDiagnostic = {
|
||||
fg = colors.light_grey,
|
||||
bg = colors.black2,
|
||||
},
|
||||
|
||||
-- close buttons
|
||||
BufferLineCloseButton = {
|
||||
fg = colors.light_grey,
|
||||
bg = colors.black2,
|
||||
},
|
||||
BufferLineCloseButtonVisible = {
|
||||
fg = colors.light_grey,
|
||||
bg = colors.black2,
|
||||
},
|
||||
BufferLineCloseButtonSelected = {
|
||||
fg = colors.red,
|
||||
bg = colors.black,
|
||||
},
|
||||
BufferLineFill = {
|
||||
fg = colors.grey_fg,
|
||||
bg = colors.black2,
|
||||
},
|
||||
BufferlineIndicatorSelected = {
|
||||
fg = colors.black,
|
||||
bg = colors.black,
|
||||
},
|
||||
|
||||
-- modified
|
||||
BufferLineModified = {
|
||||
fg = colors.red,
|
||||
bg = colors.black2,
|
||||
},
|
||||
BufferLineModifiedVisible = {
|
||||
fg = colors.red,
|
||||
bg = colors.black2,
|
||||
},
|
||||
BufferLineModifiedSelected = {
|
||||
fg = colors.green,
|
||||
bg = colors.black,
|
||||
},
|
||||
|
||||
-- separators
|
||||
BufferLineSeparator = {
|
||||
fg = colors.black2,
|
||||
bg = colors.black2,
|
||||
},
|
||||
BufferLineSeparatorVisible = {
|
||||
fg = colors.black2,
|
||||
bg = colors.black2,
|
||||
},
|
||||
BufferLineSeparatorSelected = {
|
||||
fg = colors.black2,
|
||||
bg = colors.black2,
|
||||
},
|
||||
|
||||
-- tabs
|
||||
BufferLineTab = {
|
||||
fg = colors.light_grey,
|
||||
bg = colors.one_bg3,
|
||||
},
|
||||
BufferLineTabSelected = {
|
||||
fg = colors.black2,
|
||||
bg = colors.nord_blue,
|
||||
},
|
||||
BufferLineTabClose = {
|
||||
fg = colors.red,
|
||||
bg = colors.black,
|
||||
},
|
||||
|
||||
BufferLineDevIconDefaultInactive = {
|
||||
bg = "NONE",
|
||||
},
|
||||
|
||||
BufferLineDevIconDefaultSelected = {
|
||||
bg = "NONE",
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue