Compare commits
3 Commits
2e1a6a23c2
...
57bc357f84
| Author | SHA1 | Date | |
|---|---|---|---|
| 57bc357f84 | |||
| 54efc70083 | |||
| 5fc86a5c65 |
@@ -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 .. ")"
|
||||||
|
|||||||
@@ -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,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -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" },
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user