From cb63aa7a89a7c43631920c8f881b090dc2c7e874 Mon Sep 17 00:00:00 2001 From: rootiest Date: Sat, 31 Aug 2024 03:03:36 -0400 Subject: [PATCH] feat: enable round borders for completion window --- lua/config/options.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/config/options.lua b/lua/config/options.lua index 490ff67..e6d030b 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -48,4 +48,6 @@ require("utils.blinky").enable() -- Suda smart edit: Automatically edit files in sudo mode when needed vim.g.suda_smart_edit = 1 --- @type integer Options: <0|1> vim.cmd("let g:suda#prompt = '  Enter Sudo Password  '") +-- Cmp Window Border +vim.g.completion_round_borders_enabled = true -- stylua: ignore end