You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
3.1 KiB
119 lines
3.1 KiB
local M = { |
|
"stevearc/dressing.nvim", |
|
event = "VeryLazy", |
|
} |
|
|
|
function M.config() |
|
require("dressing").setup { |
|
input = { |
|
enabled = true, |
|
|
|
-- Default prompt string |
|
default_prompt = "Input:", |
|
|
|
-- Can be 'left', 'right', or 'center' |
|
title_pos = "left", |
|
|
|
-- When true, <Esc> will close the modal |
|
insert_only = true, |
|
|
|
-- When true, input will start in insert mode. |
|
start_in_insert = true, |
|
|
|
-- These are passed to nvim_open_win |
|
-- anchor = "SW", |
|
border = "rounded", |
|
-- 'editor' and 'win' will default to being centered |
|
relative = "cursor", |
|
|
|
-- These can be integers or a float between 0 and 1 (e.g. 0.4 for 40%) |
|
prefer_width = 40, |
|
width = nil, |
|
-- min_width and max_width can be a list of mixed types. |
|
-- min_width = {20, 0.2} means "the greater of 20 columns or 20% of total" |
|
max_width = { 140, 0.9 }, |
|
min_width = { 20, 0.2 }, |
|
|
|
buf_options = {}, |
|
win_options = { |
|
-- Window transparency (0-100) |
|
winblend = 10, |
|
-- Disable line wrapping |
|
wrap = false, |
|
-- Indicator for when text exceeds window |
|
list = true, |
|
listchars = "precedes:…,extends:…", |
|
-- Increase this for more context when text scrolls off the window |
|
sidescrolloff = 0, |
|
}, |
|
}, |
|
select = { |
|
-- Set to false to disable the vim.ui.select implementation |
|
enabled = true, |
|
|
|
-- Priority list of preferred vim.select implementations |
|
backend = { "nui", "telescope", "fzf_lua", "fzf", "builtin" }, |
|
|
|
-- Trim trailing `:` from prompt |
|
trim_prompt = true, |
|
|
|
-- Options for nui Menu |
|
nui = { |
|
position = "50%", |
|
size = nil, |
|
relative = "editor", |
|
border = { |
|
style = "rounded", |
|
}, |
|
buf_options = { |
|
swapfile = false, |
|
filetype = "DressingSelect", |
|
}, |
|
win_options = { |
|
winblend = 10, |
|
}, |
|
max_width = 80, |
|
max_height = 40, |
|
min_width = 40, |
|
min_height = 10, |
|
}, |
|
|
|
-- Options for built-in selector |
|
builtin = { |
|
-- These are passed to nvim_open_win |
|
-- anchor = "NW", |
|
border = "rounded", |
|
-- 'editor' and 'win' will default to being centered |
|
relative = "editor", |
|
|
|
buf_options = {}, |
|
win_options = { |
|
-- Window transparency (0-100) |
|
winblend = 10, |
|
cursorline = true, |
|
cursorlineopt = "both", |
|
}, |
|
|
|
-- These can be integers or a float between 0 and 1 (e.g. 0.4 for 40%) |
|
-- the min_ and max_ options can be a list of mixed types. |
|
-- max_width = {140, 0.8} means "the lesser of 140 columns or 80% of total" |
|
width = nil, |
|
max_width = { 140, 0.8 }, |
|
min_width = { 40, 0.2 }, |
|
height = nil, |
|
max_height = 0.9, |
|
min_height = { 10, 0.2 }, |
|
|
|
-- Set to `false` to disable |
|
mappings = { |
|
["<Esc>"] = "Close", |
|
["<C-c>"] = "Close", |
|
["<CR>"] = "Confirm", |
|
}, |
|
|
|
}, |
|
}, |
|
} |
|
end |
|
|
|
return M
|
|
|