some borders

This commit is contained in:
Oliver Hartmann 2023-05-21 09:41:01 +02:00
parent 9207bbe62a
commit 148a870385
2 changed files with 8 additions and 1 deletions

View File

@ -75,3 +75,6 @@ opt.foldlevel = 20
opt.foldmethod = 'expr'
opt.foldexpr = 'nvim_treesitter#foldexpr()'
opt.foldexpr = 'nvim_treesitter#foldexpr()'
-- Window border for floating windows
require('lspconfig.ui.windows').default_options.border = 'rounded'

View File

@ -12,7 +12,11 @@ return {
},
},
config = function()
require('mason').setup()
require('mason').setup({
ui = {
border = 'rounded'
}
})
require('mason-lspconfig').setup({
automatic_installation = false,
})