Compare commits
3 Commits
2e1a6a23c2
...
57bc357f84
| Author | SHA1 | Date | |
|---|---|---|---|
| 57bc357f84 | |||
| 54efc70083 | |||
| 5fc86a5c65 |
@@ -72,9 +72,14 @@ return {
|
||||
border = "single",
|
||||
draw = {
|
||||
padding = 2,
|
||||
columns = { { "kind_icon" }, { "label" }, { "kind" } },
|
||||
|
||||
columns = { { "kind_icon" }, { "label" }, { "label_description" }, { "kind" } },
|
||||
components = {
|
||||
label_description = {
|
||||
width = { max = 50 },
|
||||
text = function(ctx)
|
||||
return ctx.label_detail
|
||||
end,
|
||||
},
|
||||
kind = {
|
||||
text = function(ctx)
|
||||
return "(" .. ctx.kind .. ")"
|
||||
|
||||
@@ -83,6 +83,8 @@ return {
|
||||
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, "BlinkCmpLabelDescription", { link = "Comment" })
|
||||
|
||||
vim.api.nvim_set_hl(0, "SnippetTabstop", { bg = "none" })
|
||||
end,
|
||||
},
|
||||
|
||||
@@ -40,6 +40,8 @@ vim.opt.concealcursor = "n"
|
||||
vim.opt.conceallevel = 0
|
||||
vim.g.lsp_zero_ui_float_border = "single"
|
||||
|
||||
vim.opt.fillchars = "eob: "
|
||||
|
||||
vim.filetype.add({
|
||||
pattern = { [".*/hypr/.*%.conf"] = "hyprlang" },
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user