Merge branch 'main' into remove-trailing-whitespaces

This commit is contained in:
Pedro Alves 2023-01-21 17:11:56 +00:00 committed by GitHub
commit e686e31bd7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
61 changed files with 695 additions and 234 deletions

View file

@ -9,6 +9,12 @@ in
plugins.lspsaga = {
enable = mkEnableOption "Enable lspsava.nvim";
package = mkOption {
type = types.package;
default = pkgs.vimPlugins.lspsaga-nvim;
description = "Plugin to use for lspsaga.nvim";
};
signs = {
use = mkOption {
default = true;
@ -195,7 +201,8 @@ in
in notEmpty keys;
};
in mkIf cfg.enable {
extraPlugins = [ pkgs.vimPlugins.lspsaga-nvim ];
extraPlugins = [ cfg.package ];
extraConfigLua = ''
local saga = require 'lspsaga'