Added scroll bar

This commit is contained in:
2025-11-23 23:22:42 +09:00
parent d02fdbbb45
commit 518c5588b7
4 changed files with 30 additions and 30 deletions

View File

@@ -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()