Skip to content

Commit 642f906

Browse files
committed
Make some plugins respect winborder
It is not currently in upstream. Link: mason-org/mason.nvim#1900 Link: folke/lazy.nvim#1957 Signed-off-by: Tristan Partin <[email protected]>
1 parent 9c3c031 commit 642f906

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

neovim/.config/nvim/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ require("lazy").setup("plugins", {
9898
enabled = true,
9999
},
100100
ui = {
101-
border = "rounded",
101+
border = vim.o.winborder,
102102
},
103103
})
104104

neovim/.config/nvim/lua/plugins/mason/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ return {
1111
opts = {
1212
log_level = vim.log.levels.OFF,
1313
ui = {
14-
border = "rounded",
14+
border = vim.o.winborder,
1515
},
1616
},
1717
}

neovim/.config/nvim/lua/plugins/snacks/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ return {
128128
},
129129
styles = {
130130
input = {
131-
border = "rounded",
131+
border = vim.o.winborder,
132132
title_pos = "center",
133133
relative = "editor",
134134
},

neovim/.config/nvim/lua/plugins/trouble/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ return {
1111
opts = {
1212
indent_guides = true,
1313
win = {
14-
border = "rounded",
14+
border = vim.o.winborder,
1515
position = "bottom",
1616
},
1717
},

0 commit comments

Comments
 (0)