rm highlight coloring of bufferline, web-devicons (#1025)
This commit is contained in:
parent
836ab5e98e
commit
b05e90ba8b
|
@ -1,10 +1,9 @@
|
||||||
local present, bufferline = pcall(require, "bufferline")
|
local present, bufferline = pcall(require, "bufferline")
|
||||||
|
|
||||||
if not present then
|
if not present then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local colors = require("base16").get_colors "base_30"
|
|
||||||
|
|
||||||
local options = {
|
local options = {
|
||||||
options = {
|
options = {
|
||||||
offsets = { { filetype = "NvimTree", text = "", padding = 1 } },
|
offsets = { { filetype = "NvimTree", text = "", padding = 1 } },
|
||||||
|
@ -24,6 +23,7 @@ local options = {
|
||||||
separator_style = "thin",
|
separator_style = "thin",
|
||||||
always_show_bufferline = true,
|
always_show_bufferline = true,
|
||||||
diagnostics = false,
|
diagnostics = false,
|
||||||
|
themable = true,
|
||||||
custom_filter = function(buf_number)
|
custom_filter = function(buf_number)
|
||||||
-- Func to filter out our managed/persistent split terms
|
-- Func to filter out our managed/persistent split terms
|
||||||
local present_type, type = pcall(function()
|
local present_type, type = pcall(function()
|
||||||
|
@ -42,98 +42,6 @@ local options = {
|
||||||
return true
|
return true
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
highlights = {
|
|
||||||
background = {
|
|
||||||
guifg = colors.grey_fg,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- buffers
|
|
||||||
buffer_selected = {
|
|
||||||
guifg = colors.white,
|
|
||||||
guibg = colors.black,
|
|
||||||
gui = "bold",
|
|
||||||
},
|
|
||||||
buffer_visible = {
|
|
||||||
guifg = colors.light_grey,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- for diagnostics = "nvim_lsp"
|
|
||||||
error = {
|
|
||||||
guifg = colors.light_grey,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
error_diagnostic = {
|
|
||||||
guifg = colors.light_grey,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- close buttons
|
|
||||||
close_button = {
|
|
||||||
guifg = colors.light_grey,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
close_button_visible = {
|
|
||||||
guifg = colors.light_grey,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
close_button_selected = {
|
|
||||||
guifg = colors.red,
|
|
||||||
guibg = colors.black,
|
|
||||||
},
|
|
||||||
fill = {
|
|
||||||
guifg = colors.grey_fg,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
indicator_selected = {
|
|
||||||
guifg = colors.black,
|
|
||||||
guibg = colors.black,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- modified
|
|
||||||
modified = {
|
|
||||||
guifg = colors.red,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
modified_visible = {
|
|
||||||
guifg = colors.red,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
modified_selected = {
|
|
||||||
guifg = colors.green,
|
|
||||||
guibg = colors.black,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- separators
|
|
||||||
separator = {
|
|
||||||
guifg = colors.black2,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
separator_visible = {
|
|
||||||
guifg = colors.black2,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
separator_selected = {
|
|
||||||
guifg = colors.black2,
|
|
||||||
guibg = colors.black2,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- tabs
|
|
||||||
tab = {
|
|
||||||
guifg = colors.light_grey,
|
|
||||||
guibg = colors.one_bg3,
|
|
||||||
},
|
|
||||||
tab_selected = {
|
|
||||||
guifg = colors.black2,
|
|
||||||
guibg = colors.nord_blue,
|
|
||||||
},
|
|
||||||
tab_close = {
|
|
||||||
guifg = colors.red,
|
|
||||||
guibg = colors.black,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
-- check for any override
|
-- check for any override
|
||||||
|
|
|
@ -4,143 +4,114 @@ if not present then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local colors = require("base16").get_colors "base_30"
|
|
||||||
|
|
||||||
local options = {
|
local options = {
|
||||||
override = {
|
override = {
|
||||||
c = {
|
c = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.blue,
|
|
||||||
name = "c",
|
name = "c",
|
||||||
},
|
},
|
||||||
css = {
|
css = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.blue,
|
|
||||||
name = "css",
|
name = "css",
|
||||||
},
|
},
|
||||||
deb = {
|
deb = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.cyan,
|
|
||||||
name = "deb",
|
name = "deb",
|
||||||
},
|
},
|
||||||
Dockerfile = {
|
Dockerfile = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.cyan,
|
|
||||||
name = "Dockerfile",
|
name = "Dockerfile",
|
||||||
},
|
},
|
||||||
html = {
|
html = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.baby_pink,
|
|
||||||
name = "html",
|
name = "html",
|
||||||
},
|
},
|
||||||
jpeg = {
|
jpeg = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.dark_purple,
|
|
||||||
name = "jpeg",
|
name = "jpeg",
|
||||||
},
|
},
|
||||||
jpg = {
|
jpg = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.dark_purple,
|
|
||||||
name = "jpg",
|
name = "jpg",
|
||||||
},
|
},
|
||||||
js = {
|
js = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.sun,
|
|
||||||
name = "js",
|
name = "js",
|
||||||
},
|
},
|
||||||
kt = {
|
kt = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.orange,
|
|
||||||
name = "kt",
|
name = "kt",
|
||||||
},
|
},
|
||||||
lock = {
|
lock = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.red,
|
|
||||||
name = "lock",
|
name = "lock",
|
||||||
},
|
},
|
||||||
lua = {
|
lua = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.blue,
|
|
||||||
name = "lua",
|
name = "lua",
|
||||||
},
|
},
|
||||||
mp3 = {
|
mp3 = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.white,
|
|
||||||
name = "mp3",
|
name = "mp3",
|
||||||
},
|
},
|
||||||
mp4 = {
|
mp4 = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.white,
|
|
||||||
name = "mp4",
|
name = "mp4",
|
||||||
},
|
},
|
||||||
out = {
|
out = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.white,
|
|
||||||
name = "out",
|
name = "out",
|
||||||
},
|
},
|
||||||
png = {
|
png = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.dark_purple,
|
|
||||||
name = "png",
|
name = "png",
|
||||||
},
|
},
|
||||||
py = {
|
py = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.cyan,
|
|
||||||
name = "py",
|
name = "py",
|
||||||
},
|
},
|
||||||
["robots.txt"] = {
|
["robots.txt"] = {
|
||||||
icon = "ﮧ",
|
icon = "ﮧ",
|
||||||
color = colors.red,
|
|
||||||
name = "robots",
|
name = "robots",
|
||||||
},
|
},
|
||||||
toml = {
|
toml = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.blue,
|
|
||||||
name = "toml",
|
name = "toml",
|
||||||
},
|
},
|
||||||
ts = {
|
ts = {
|
||||||
icon = "ﯤ",
|
icon = "ﯤ",
|
||||||
color = colors.teal,
|
|
||||||
name = "ts",
|
name = "ts",
|
||||||
},
|
},
|
||||||
ttf = {
|
ttf = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.white,
|
|
||||||
name = "TrueTypeFont",
|
name = "TrueTypeFont",
|
||||||
},
|
},
|
||||||
rb = {
|
rb = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.pink,
|
|
||||||
name = "rb",
|
name = "rb",
|
||||||
},
|
},
|
||||||
rpm = {
|
rpm = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.orange,
|
|
||||||
name = "rpm",
|
name = "rpm",
|
||||||
},
|
},
|
||||||
vue = {
|
vue = {
|
||||||
icon = "﵂",
|
icon = "﵂",
|
||||||
color = colors.vibrant_green,
|
|
||||||
name = "vue",
|
name = "vue",
|
||||||
},
|
},
|
||||||
woff = {
|
woff = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.white,
|
|
||||||
name = "WebOpenFontFormat",
|
name = "WebOpenFontFormat",
|
||||||
},
|
},
|
||||||
woff2 = {
|
woff2 = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.white,
|
|
||||||
name = "WebOpenFontFormat2",
|
name = "WebOpenFontFormat2",
|
||||||
},
|
},
|
||||||
xz = {
|
xz = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.sun,
|
|
||||||
name = "xz",
|
name = "xz",
|
||||||
},
|
},
|
||||||
zip = {
|
zip = {
|
||||||
icon = "",
|
icon = "",
|
||||||
color = colors.sun,
|
|
||||||
name = "zip",
|
name = "zip",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue