feat: Remove old eww folder

This commit is contained in:
Fabio Lenherr / DashieTM 2023-10-03 21:30:23 +02:00
parent be38dd733d
commit 1654ce2be0
17 changed files with 2296 additions and 106 deletions

View file

@ -15,6 +15,7 @@ return {
return require("lazyvim.util").has("nvim-cmp")
end,
},
{ "Hoffs/omnisharp-extended-lsp.nvim", lazy = true },
},
---@class PluginLspOpts
opts = {
@ -69,7 +70,31 @@ return {
ansiblels = {},
marksman = {},
asm_lsp = {},
omnisharp = {},
omnisharp = {
handlers = {
["textDocument/definition"] = function(...)
return require("omnisharp_extended").handler(...)
end,
},
inlayHintsOptions = {
enableForParameters = true,
forLiteralParameters = true,
forIndexerParameters = true,
forObjectCreationParameters = true,
forOtherParameters = true,
suppressForParametersThatDifferOnlyBySuffix = false,
suppressForParametersThatMatchMethodIntent = false,
suppressForParametersThatMatchArgumentName = false,
enableForTypes = true,
forImplicitVariableTypes = true,
forLambdaParameterTypes = true,
forImplicitObjectCreation = true,
},
enable_roslyn_analyzers = true,
organize_imports_on_format = true,
enable_import_completion = true,
},
rnix = {},
rust_analyzer = {
diagnostics = {
enable = true,