diff options
author | Huynh Viet <[email protected]> | 2021-07-25 23:37:24 +0700 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-25 12:37:24 -0400 |
commit | 823945cdad5c6cb9ad5ff8d135dd371534580cb4 (patch) | |
tree | bac24e040234cc6ec9abc74e32ce43d0e667adaa /lua/core/terminal.lua | |
parent | 9944eb877695f9fa8607d5c59864131190dba275 (diff) |
Fixed the potential ugly prompt which is poor UX (#1091)
Toggleterm's winblend option leads to ugly prompt for some users
https://github.com/akinsho/nvim-toggleterm.lua/issues/70
Diffstat (limited to 'lua/core/terminal.lua')
-rw-r--r-- | lua/core/terminal.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/core/terminal.lua b/lua/core/terminal.lua index b7c58c0d..81287c94 100644 --- a/lua/core/terminal.lua +++ b/lua/core/terminal.lua @@ -26,7 +26,7 @@ M.config = function() border = "curved", -- width = <value>, -- height = <value>, - winblend = 3, + winblend = 0, highlights = { border = "Normal", background = "Normal", |