visual changes, addet fancy cmd-input and changed some of the notification styles.. Also revamped lsp icons to match notify (except for errors - I like to shit myself with )

This commit is contained in:
pika 2024-07-06 04:24:19 +02:00
parent a76e973992
commit 8135fbe32f
4 changed files with 62 additions and 2 deletions

View file

@ -0,0 +1,41 @@
return {
"VonHeikemen/fine-cmdline.nvim",
dependencies = {
{ "MunifTanjim/nui.nvim" },
},
config = function()
require("fine-cmdline").setup({
cmdline = {
enable_keymaps = true,
smart_history = true,
prompt = ": ",
},
popup = {
position = {
row = "10%",
col = "50%",
},
size = {
width = "60%",
},
border = {
style = "rounded",
},
win_options = {
winhighlight = "Normal:Normal,FloatBorder:FloatBorder",
},
},
hooks = {
before_mount = function(input)
-- code
end,
after_mount = function(input)
-- code
end,
set_keymaps = function(imap, feedkeys)
-- code
end,
},
})
end,
}