aboutsummaryrefslogtreecommitdiff
path: root/lua/pets/popup.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/pets/popup.lua')
-rw-r--r--lua/pets/popup.lua28
1 files changed, 14 insertions, 14 deletions
diff --git a/lua/pets/popup.lua b/lua/pets/popup.lua
index f044218..8fe7ebf 100644
--- a/lua/pets/popup.lua
+++ b/lua/pets/popup.lua
@@ -1,19 +1,19 @@
local M = {}
local Popup = require("nui.popup")
M.popup = Popup({
- position = {
- row = "100%", -- FIX: set row for different sizes / implement offset
- col = "100%",
- },
- relative = "editor",
- size = {
- width = 60,
- height = 10,
- },
- focusable = false,
- enter = false,
- win_options = {
- winblend = 100, -- TODO: set to 100 for transparent background
- },
+ position = {
+ row = "100%", -- FIX: set row for different sizes / implement offset
+ col = "100%",
+ },
+ relative = "editor",
+ size = {
+ width = "25%",
+ height = 10,
+ },
+ focusable = false,
+ enter = false,
+ win_options = {
+ winblend = 10,
+ },
})
return M