mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-31 23:40:12 +02:00
Merge branch 'main' into remove-trailing-whitespaces
This commit is contained in:
commit
e686e31bd7
61 changed files with 695 additions and 234 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue