From a0b9561e10ca9e34fcc971a9fb180f5870d3170e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sascha=20L=C3=BCdecke?= Date: Thu, 26 Sep 2024 10:42:36 +0200 Subject: [PATCH] lsp_signature use only virtual text, dropped lush for colorthemes --- lua/plugins.lua | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index a2febe7..347285e 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -53,8 +53,10 @@ require("lazy").setup({ { "ray-x/lsp_signature.nvim", event = "VeryLazy", - opts = {}, - config = function(_, opts) require 'lsp_signature'.setup(opts) end + opts = { + bind = true, + floating_window = false, + }, }, -- neogit setup @@ -268,15 +270,4 @@ require("lazy").setup({ { "itchyny/calendar.vim" }, - - -------------------------------------------------- - -- - -- Color schemes - -- - -------------------------------------------------- - { - "rktjmp/lush.nvim" - -- if you wish to use your own colorscheme: - -- { dir = '/absolute/path/to/colorscheme', lazy = true }, - }, })