-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdressing.lua
141 lines (116 loc) · 3.68 KB
/
dressing.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
return {
'stevearc/dressing.nvim',
config = function(config)
require('dressing').setup(config.dressing)
end,
defaultConfig = {
'dressing',
{
input = {
-- Set to false to disable the vim.ui.input implementation
enabled = true,
-- Default prompt string
default_prompt = 'Input:',
-- Can be 'left', 'right', or 'center'
prompt_align = 'left',
-- When true, input will start in insert mode.
start_in_insert = true,
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 = { 80, 0.8 },
min_width = { 10, 0.2 },
win_options = {
-- Window transparency (0-100)
winblend = 0,
-- Change default highlight groups (see :help winhl)
winhighlight = '',
},
-- Set to `false` to disable
mappings = {
n = { ['<Esc>'] = 'Close', ['<CR>'] = 'Confirm' },
i = {
['<Esc>'] = 'Close',
['<C-c>'] = 'Close',
['<CR>'] = 'Confirm',
['<Up>'] = 'HistoryPrev',
['<Down>'] = 'HistoryNext',
},
},
override = function(conf)
-- This is the config that will be passed to nvim_open_win.
-- Change values here to customize the layout
return conf
end,
-- see :help dressing_get_config
get_config = nil,
},
select = {
-- Set to false to disable the vim.ui.select implementation
enabled = true,
-- Priority list of preferred vim.select implementations
backend = { 'telescope', 'nui', 'fzf_lua', 'fzf', 'builtin' },
-- Trim trailing `:` from prompt
trim_prompt = true,
-- Options for telescope selector
-- These are passed into the telescope picker directly. Can be used like:
-- telescope = require('telescope.themes').get_ivy({...})
telescope = nil,
-- Options for fzf selector
fzf = { window = { width = 0.5, height = 0.4 } },
-- Options for fzf_lua selector
fzf_lua = { winopts = { width = 0.5, height = 0.4 } },
-- Options for nui Menu
nui = {
position = '50%',
size = nil,
relative = 'editor',
border = { style = 'rounded' },
buf_options = { swapfile = false, filetype = 'DressingSelect' },
win_options = { winblend = 0 },
max_width = 80,
max_height = 40,
min_width = 40,
min_height = 10,
},
-- Options for built-in selector
builtin = {
border = 'rounded',
-- 'editor' and 'win' will default to being centered
relative = 'editor',
win_options = {
-- Window transparency (0-100)
winblend = 0,
-- Change default highlight groups (see :help winhl)
winhighlight = '',
},
-- 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' },
override = function(conf)
-- This is the config that will be passed to nvim_open_win.
-- Change values here to customize the layout
return conf
end,
},
-- Used to override format_item. See :help dressing-format
format_item_override = {},
-- see :help dressing_get_config
get_config = nil,
},
},
},
}