This commit is contained in:
Greg 2025-04-16 23:26:35 +03:00
parent 593717151d
commit e9c0cb5092
3 changed files with 14 additions and 4 deletions

View file

@ -13,7 +13,17 @@ return {
-- characters. -- characters.
-- trigger = { show_on_keyword = false }, -- trigger = { show_on_keyword = false },
-- Controls whether the documentation window will automatically show when selecting a completion item -- Controls whether the documentation window will automatically show when selecting a completion item
documentation = { auto_show = true, auto_show_delay_ms = 500 }, documentation = {
auto_show = true,
auto_show_delay_ms = 500,
window = {
border = "rounded",
},
},
menu = {
border = "rounded",
draw = { gap = 2 },
},
}, },
sources = { sources = {
-- add lazydev to your completion providers -- add lazydev to your completion providers

View file

@ -3,7 +3,7 @@ return {
lazy = false, lazy = false,
priority = 1000, priority = 1000,
init = function() init = function()
vim.cmd.colorscheme("lackluster") -- vim.cmd.colorscheme("lackluster")
-- vim.cmd.colorscheme("lackluster-hack") -- my favorite -- vim.cmd.colorscheme("lackluster-hack") -- my favorite
-- vim.cmd.colorscheme("lackluster-mint") -- vim.cmd.colorscheme("lackluster-mint")
end, end,

View file

@ -5,9 +5,9 @@ return {
-- Load the colorscheme here. -- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load -- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
-- vim.cmd.colorscheme("tokyonight-storm") vim.cmd.colorscheme("tokyonight-storm")
-- You can configure highlights by doing something like: -- You can configure highlights by doing something like:
-- vim.cmd.hi("Comment gui=none") vim.cmd.hi("Comment gui=none")
end, end,
} }