Compare commits

...

3 Commits

Author SHA1 Message Date
409
57bc357f84 adjust blink import source color 2025-06-20 19:53:03 +02:00
409
54efc70083 hide ~ EOB chars 2025-06-20 19:50:57 +02:00
409
5fc86a5c65 blink show import source 2025-06-20 19:50:49 +02:00
3 changed files with 12 additions and 3 deletions

View File

@@ -72,9 +72,14 @@ return {
border = "single", border = "single",
draw = { draw = {
padding = 2, padding = 2,
columns = { { "kind_icon" }, { "label" }, { "kind" } }, columns = { { "kind_icon" }, { "label" }, { "label_description" }, { "kind" } },
components = { components = {
label_description = {
width = { max = 50 },
text = function(ctx)
return ctx.label_detail
end,
},
kind = { kind = {
text = function(ctx) text = function(ctx)
return "(" .. ctx.kind .. ")" return "(" .. ctx.kind .. ")"

View File

@@ -15,7 +15,7 @@ return {
no_italic = true, no_italic = true,
no_underline = false, no_underline = false,
highlight_overrides = { highlight_overrides = {
mocha = function (mocha) mocha = function(mocha)
return { return {
Comment = { fg = mocha.overlay0 }, Comment = { fg = mocha.overlay0 },
} }
@@ -83,6 +83,8 @@ return {
vim.api.nvim_set_hl(0, "BlinkCmpKindFile", { link = "TSURI" }) vim.api.nvim_set_hl(0, "BlinkCmpKindFile", { link = "TSURI" })
vim.api.nvim_set_hl(0, "BlinkCmpKindEnum", { link = "@variable.member" }) vim.api.nvim_set_hl(0, "BlinkCmpKindEnum", { link = "@variable.member" })
vim.api.nvim_set_hl(0, "BlinkCmpLabelDescription", { link = "Comment" })
vim.api.nvim_set_hl(0, "SnippetTabstop", { bg = "none" }) vim.api.nvim_set_hl(0, "SnippetTabstop", { bg = "none" })
end, end,
}, },

View File

@@ -40,6 +40,8 @@ vim.opt.concealcursor = "n"
vim.opt.conceallevel = 0 vim.opt.conceallevel = 0
vim.g.lsp_zero_ui_float_border = "single" vim.g.lsp_zero_ui_float_border = "single"
vim.opt.fillchars = "eob: "
vim.filetype.add({ vim.filetype.add({
pattern = { [".*/hypr/.*%.conf"] = "hyprlang" }, pattern = { [".*/hypr/.*%.conf"] = "hyprlang" },
}) })