This commit is contained in:
Ben Kyd
2023-03-23 20:13:16 +00:00
parent c1275506ed
commit b9d7db54a8
3 changed files with 14 additions and 1 deletions

View File

@@ -1,3 +1,3 @@
[General]
savePath=/home/benk
savePath=/home/ben
uploadWithoutConfirmation=true

View File

@@ -49,6 +49,15 @@ lsp.setup_nvim_cmp({
mapping = cmp_mappings,
})
local cmp_config = lsp.defaults.cmp_config({
window = {
completion = cmp.config.window.bordered(),
documentation = cmp.config.window.bordered()
},
})
cmp.setup(cmp_config)
cmp.setup.cmdline('/', {
sources = {
{ name = 'buffer' }

View File

@@ -27,3 +27,7 @@ require('kanagawa').setup({
-- setup must be called before loading
vim.cmd("colorscheme kanagawa")
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "NONE" })
vim.api.nvim_set_hl(0, "FloatBorder", { bg = "NONE" })
vim.api.nvim_set_hl(0, "CmpItemMenu", { bg = "NONE" })