Added scroll bar
This commit is contained in:
@@ -10,16 +10,6 @@ vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
|
||||
})
|
||||
|
||||
local lsp = require("lspconfig")
|
||||
local configs = require("lspconfig.configs")
|
||||
|
||||
if not configs.roslyn then
|
||||
configs.roslyn = {
|
||||
default_config = {
|
||||
root_dir = lsp.util.root_pattern("*.sln", "*.slnx", "*.csproj") or vim.fn.getcwd(),
|
||||
filetypes = { "cs" },
|
||||
},
|
||||
}
|
||||
end
|
||||
|
||||
local csext = require("csharpls_extended")
|
||||
local config = {
|
||||
@@ -41,5 +31,9 @@ local config = {
|
||||
end,
|
||||
}
|
||||
|
||||
if not lsp.csharp_ls then
|
||||
lsp.csharp_ls = {}
|
||||
end
|
||||
|
||||
lsp.csharp_ls.setup(config)
|
||||
csext.buf_read_cmd_bind()
|
||||
|
||||
Reference in New Issue
Block a user