From 3848aad76e06344ec477a07e2d79cbb03ae40f37 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Sun, 7 Apr 2024 23:55:12 +0200 Subject: [PATCH] feat: add lspsaga plugin --- modules/home-manager/cli/neovim/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/modules/home-manager/cli/neovim/default.nix b/modules/home-manager/cli/neovim/default.nix index ae4424e..19cbdca 100644 --- a/modules/home-manager/cli/neovim/default.nix +++ b/modules/home-manager/cli/neovim/default.nix @@ -134,6 +134,20 @@ in config = ( builtins.readFile ./files/treesitter_context.lua); } + { + plugin = lspsaga-nvim; + type = "lua"; + config = '' + require('lspsaga').setup { + ui = { + code_action = '' + }, + lightbulb = { + virtual_text = false + } + } + ''; + } { plugin = which-key-nvim; type = "lua";