Add files via upload

This commit is contained in:
Asep Komarudin 2023-01-15 00:17:41 +07:00 committed by GitHub
commit e53a643e3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
54 changed files with 5285 additions and 0 deletions

15
lua/user/dressing.lua Normal file
View file

@ -0,0 +1,15 @@
local status_ok, dressing = pcall(require, "dressing")
if not status_ok then
return
end
dressing.setup({
input = {
default_prompt = "",
win_options = { winhighlight = "Normal:Normal,NormalNC:Normal" },
},
select = {
backend = { "telescope", "builtin" },
builtin = { win_options = { winhighlight = "Normal:Normal,NormalNC:Normal" } },
},
})