mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2026-05-18 06:44:12 +00:00
[neovim] set italic mode for LspInlayHint
This commit is contained in:
@@ -39,6 +39,10 @@ require("lazy").setup({
|
|||||||
on_colors = function(colors)
|
on_colors = function(colors)
|
||||||
colors.error = "#ff966c"
|
colors.error = "#ff966c"
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
on_highlights = function(hl, _)
|
||||||
|
hl.LspInlayHint = { italic = true, bg = "#24283c", fg = "#545c7e" }
|
||||||
|
end,
|
||||||
})
|
})
|
||||||
vim.cmd("colorscheme tokyonight-moon")
|
vim.cmd("colorscheme tokyonight-moon")
|
||||||
end,
|
end,
|
||||||
@@ -251,8 +255,8 @@ require("lazy").setup({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
-- {
|
||||||
"qvalentin/helm-ls.nvim",
|
-- "qvalentin/helm-ls.nvim",
|
||||||
ft = "helm",
|
-- ft = "helm",
|
||||||
},
|
-- },
|
||||||
}, lazy_opts)
|
}, lazy_opts)
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ require("blink.cmp").setup({
|
|||||||
window = { border = "single" },
|
window = { border = "single" },
|
||||||
},
|
},
|
||||||
menu = {
|
menu = {
|
||||||
|
|
||||||
auto_show = function(ctx)
|
auto_show = function(ctx)
|
||||||
return vim.fn.getcmdtype() == ":"
|
return vim.fn.getcmdtype() == ":"
|
||||||
end,
|
end,
|
||||||
|
|||||||
Reference in New Issue
Block a user