From c12621a215d9090471840dd96a2c24b82a754e4e Mon Sep 17 00:00:00 2001 From: th3r00t Date: Fri, 19 Sep 2025 14:09:35 -0400 Subject: [PATCH] Working on completion engine --- coc-settings.json | 2 +- lua/lsp.lua | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/coc-settings.json b/coc-settings.json index b8b0f51..9c35c40 100644 --- a/coc-settings.json +++ b/coc-settings.json @@ -4,7 +4,7 @@ "suggest.floatEnable": true, "suggest.detailField": "preview", "suggest.maxPreviewWidth": 80, - "signature.enable": true, + "signature.enable": false, "signature.target": "float", "extensions": [ "coc-json", diff --git a/lua/lsp.lua b/lua/lsp.lua index 8bd8fd2..db6620f 100644 --- a/lua/lsp.lua +++ b/lua/lsp.lua @@ -44,16 +44,11 @@ vim.lsp.enable('basedpyright', { require("lsp_signature").setup({ debug = false, bind = true, - -- doc_lines = 10, - -- max_height = 12, - -- max_width = function() return math.floor(vim.api.nvim_win_get_width(0) * 0.8) end, doc_lines = 5, max_height = 8, max_width = function() return math.floor(vim.api.nvim_win_get_width(0) * 0.7) end, wrap = true, floating_window = true, - -- floating_window_above_cur_line = true, - -- floating_window_off_y = 0, floating_window_above_cur_line = false, floating_window_off_x = 1, floating_window_off_y = 1,