nvim
This commit is contained in:
parent
593717151d
commit
e9c0cb5092
3 changed files with 14 additions and 4 deletions
|
@ -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
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue