Reshape cmp box

This commit is contained in:
Alessandro
2024-09-24 10:03:45 +02:00
parent 44ae4fbc45
commit 9f4b4c111d
6 changed files with 47 additions and 24 deletions

View File

@@ -27,4 +27,8 @@ return {
"nvim-tree/nvim-tree.lua",
opts = require "configs.nvim-tree",
},
{
"hrsh7th/nvim-cmp",
opts = require("configs.cmp"),
},
}

View File

@@ -2,7 +2,7 @@ return {
"kevinhwang91/nvim-ufo",
config = function()
require("ufo").setup {
provider_selector = function(bufnr, filetype, buftype)
provider_selector = function(_, _, _)
return { "treesitter", "indent" }
end,
}