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.
|
||||
-- trigger = { show_on_keyword = false },
|
||||
-- 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 = {
|
||||
-- add lazydev to your completion providers
|
||||
|
|
|
@ -3,7 +3,7 @@ return {
|
|||
lazy = false,
|
||||
priority = 1000,
|
||||
init = function()
|
||||
vim.cmd.colorscheme("lackluster")
|
||||
-- vim.cmd.colorscheme("lackluster")
|
||||
-- vim.cmd.colorscheme("lackluster-hack") -- my favorite
|
||||
-- vim.cmd.colorscheme("lackluster-mint")
|
||||
end,
|
||||
|
|
|
@ -5,9 +5,9 @@ return {
|
|||
-- Load the colorscheme here.
|
||||
-- Like many other themes, this one has different styles, and you could load
|
||||
-- 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:
|
||||
-- vim.cmd.hi("Comment gui=none")
|
||||
vim.cmd.hi("Comment gui=none")
|
||||
end,
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue