Moving to lazy nvim

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-08-22 14:51:21 +02:00
parent 128bf12422
commit ce905b45fb
30 changed files with 221 additions and 159 deletions

View File

@@ -0,0 +1,27 @@
local status, cmdline = pcall(require, "fine-cmdline")
if not status then
return
end
cmdline.setup({
cmdline = {
enable_keymaps = true,
smart_history = true,
prompt = "> ",
},
popup = {
position = {
row = "10%",
col = "50%",
},
size = {
width = "80%",
},
border = {
style = "rounded",
},
win_options = {
winhighlight = "Normal:Normal,FloatBorder:FloatBorder",
},
},
})