Improve perform
This commit is contained in:
@@ -119,6 +119,8 @@ return {
|
||||
-- client.server_capabilities.hoverProvider = false
|
||||
-- client.server_capabilities.renameProvider = false
|
||||
-- client.server_capabilities.definitionProvider = false
|
||||
-- client.server_capabilities.signatureHelpProvider = false
|
||||
|
||||
client.server_capabilities.codeLensProvider = false
|
||||
client.server_capabilities.colorProvider = false
|
||||
client.server_capabilities.callHierarchyProvider = false
|
||||
@@ -131,7 +133,6 @@ return {
|
||||
client.server_capabilities.inlineCompletionProvider = false
|
||||
client.server_capabilities.inlineValueProvider = false
|
||||
client.server_capabilities.notebookDocumentSync = false
|
||||
client.server_capabilities.signatureHelpProvider = false
|
||||
client.server_capabilities.typeDefinitionProvider = false
|
||||
client.server_capabilities.workspaceSymbolProvider = false
|
||||
client.server_capabilities.monikerProvider = false
|
||||
|
||||
@@ -9,6 +9,9 @@ return {
|
||||
{
|
||||
"Saghen/blink.cmp",
|
||||
opts = {
|
||||
signature = {
|
||||
enabled = false,
|
||||
},
|
||||
keymap = {
|
||||
preset = "default",
|
||||
["<C-f>"] = false,
|
||||
@@ -25,9 +28,9 @@ return {
|
||||
friendly_snippets = {
|
||||
enable = false,
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
completion = {
|
||||
list = {
|
||||
@@ -53,7 +56,7 @@ return {
|
||||
auto_brackets = { enabled = false },
|
||||
},
|
||||
documentation = {
|
||||
auto_show = false,
|
||||
auto_show = true,
|
||||
auto_show_delay_ms = 0,
|
||||
window = {
|
||||
border = "rounded",
|
||||
|
||||
@@ -2,25 +2,29 @@ return {
|
||||
before_init = function(_, c)
|
||||
if not c.settings then c.settings = {} end
|
||||
if not c.settings.python then c.settings.python = {} end
|
||||
c.settings.python.pythonPath = vim.fn.exepath "python"
|
||||
c.settings.python.pythonPath = vim.fn.exepath "python3"
|
||||
end,
|
||||
settings = {
|
||||
basedpyright = {
|
||||
disableLanguageServices = false,
|
||||
disableOrganizeImports = true,
|
||||
disableTaggedHints = true,
|
||||
|
||||
useLibraryCodeForTypes = false,
|
||||
openFilesOnly = true,
|
||||
|
||||
analysis = {
|
||||
autoSearchPath = true,
|
||||
autoSearchPath = false,
|
||||
useLibraryCodeForTypes = false,
|
||||
logLevel = "Trace",
|
||||
|
||||
typeCheckingMode = "basic",
|
||||
deprecateTypingAliases = false,
|
||||
diagnosticMode = "openFilesOnly",
|
||||
inlayHints = {
|
||||
variableTypes = true,
|
||||
genericTypes = true,
|
||||
callArgumentNames = true,
|
||||
callArgumentNames = false,
|
||||
},
|
||||
ignore = {
|
||||
"**/unsloth_compiled_cache/**",
|
||||
|
||||
@@ -11,7 +11,8 @@ return {
|
||||
{ "JoosepAlviste/nvim-ts-context-commentstring", enabled = false },
|
||||
{ "windwp/nvim-ts-autotag", enabled = false },
|
||||
|
||||
{ "ray-x/lsp_signature.nvim", enabled = false },
|
||||
-- { "ray-x/lsp_signature.nvim", enabled = false },
|
||||
{ "brenoprata10/nvim-highlight-colors", enabled = false },
|
||||
|
||||
-- Disabled development plugins
|
||||
{ "mfussenegger/nvim-dap", enabled = false },
|
||||
|
||||
@@ -40,6 +40,7 @@ return {
|
||||
},
|
||||
{
|
||||
"OXY2DEV/markview.nvim",
|
||||
lazy = false,
|
||||
ft = function()
|
||||
local plugin = require("lazy.core.config").spec.plugins["markview.nvim"]
|
||||
local opts = require("lazy.core.plugin").values(plugin, "opts", false)
|
||||
@@ -53,6 +54,7 @@ return {
|
||||
require("astrocore").list_insert_unique(opts.ensure_installed, { "html", "markdown", "markdown_inline" })
|
||||
end
|
||||
end,
|
||||
"saghen/blink.cmp"
|
||||
},
|
||||
opts = {
|
||||
preview = {
|
||||
|
||||
@@ -10,8 +10,12 @@ return {
|
||||
|
||||
{
|
||||
"ray-x/lsp_signature.nvim",
|
||||
event = "BufRead",
|
||||
event = "InsertEnter",
|
||||
opts = {
|
||||
bind = true,
|
||||
handler_option = {
|
||||
border = "rounded",
|
||||
},
|
||||
hint_enable = false,
|
||||
doc_lines = 0,
|
||||
},
|
||||
@@ -35,7 +39,6 @@ return {
|
||||
dim = { enabled = false },
|
||||
terminal = { enabled = false },
|
||||
profiler = { enabled = false },
|
||||
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user