Skip to content

Commit

Permalink
Add consistent UI borders
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Oct 1, 2024
1 parent c02bb44 commit 60d3dc8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions nvim/lua/plugins/lspzero.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ function Plugin.config()
vim.g.lsp_zero_ui_float_border = "single"
end)

require("lspconfig.ui.windows").default_options.border = "single"

-- setup MUST go mason -> conform -> mason-conform
require("plugins.lsp.mason")
require("plugins.lsp.conform")
Expand Down
5 changes: 4 additions & 1 deletion nvim/lua/user/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ end

lazy.path = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
lazy.opts = {
change_detection = { enabled = false}
change_detection = { enabled = false },
ui = {
border = "single",
},
}

lazy.setup({ { import = "plugins" } })

0 comments on commit 60d3dc8

Please sign in to comment.