mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 13:45:58 +01:00
Merge pull request #174 from NotAShelf/nvim-docs-view
modules/lsp: add nvim-docs-view
This commit is contained in:
commit
197de16a07
9 changed files with 112 additions and 12 deletions
|
@ -38,6 +38,7 @@ inputs: let
|
|||
trouble.enable = true;
|
||||
lspSignature.enable = true;
|
||||
lsplines.enable = isMaximal;
|
||||
nvim-docs-view.enable = isMaximal;
|
||||
};
|
||||
|
||||
vim.debugger = {
|
||||
|
|
|
@ -72,6 +72,8 @@ https://github.com/notashelf[notashelf]:
|
|||
|
||||
* Disabled Lualine LSP status indicator for toggleterm buffer
|
||||
|
||||
* Added `nvim-docs-view`, a plugin to display lsp hover documentation in a side panel
|
||||
|
||||
https://github.com/jacekpoz[jacekpoz]:
|
||||
|
||||
* Fixed scrollOffset not being used
|
||||
|
|
17
flake.lock
17
flake.lock
|
@ -1108,6 +1108,22 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nvim-docs-view": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1697737319,
|
||||
"narHash": "sha256-EmQbnleqxE+VHO5bMI9U/gMpwbJbPdNhrEWE7357MCE=",
|
||||
"owner": "amrbashir",
|
||||
"repo": "nvim-docs-view",
|
||||
"rev": "74a5e989e3fdcfd9418bb9dfec0ace308e00a5a0",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "amrbashir",
|
||||
"repo": "nvim-docs-view",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nvim-lightbulb": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
|
@ -1511,6 +1527,7 @@
|
|||
"nvim-cursorline": "nvim-cursorline",
|
||||
"nvim-dap": "nvim-dap",
|
||||
"nvim-dap-ui": "nvim-dap-ui",
|
||||
"nvim-docs-view": "nvim-docs-view",
|
||||
"nvim-lightbulb": "nvim-lightbulb",
|
||||
"nvim-lspconfig": "nvim-lspconfig",
|
||||
"nvim-navbuddy": "nvim-navbuddy",
|
||||
|
|
29
flake.nix
29
flake.nix
|
@ -116,6 +116,12 @@
|
|||
flake = false;
|
||||
};
|
||||
|
||||
nvim-docs-view = {
|
||||
url = "github:amrbashir/nvim-docs-view";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
# language support
|
||||
sqls-nvim = {
|
||||
url = "github:nanotee/sqls.nvim";
|
||||
flake = false;
|
||||
|
@ -146,6 +152,17 @@
|
|||
flake = false;
|
||||
};
|
||||
|
||||
glow-nvim = {
|
||||
url = "github:ellisonleao/glow.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
# Tidal cycles
|
||||
tidalcycles = {
|
||||
url = "github:mitchmindtree/tidalcycles.nix";
|
||||
inputs.vim-tidal-src.url = "github:tidalcycles/vim-tidal";
|
||||
};
|
||||
|
||||
# Copying/Registers
|
||||
registers = {
|
||||
url = "github:tversteeg/registers.nvim";
|
||||
|
@ -373,18 +390,6 @@
|
|||
flake = false;
|
||||
};
|
||||
|
||||
# Markdown
|
||||
glow-nvim = {
|
||||
url = "github:ellisonleao/glow.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
# Tidal cycles
|
||||
tidalcycles = {
|
||||
url = "github:mitchmindtree/tidalcycles.nix";
|
||||
inputs.vim-tidal-src.url = "github:tidalcycles/vim-tidal";
|
||||
};
|
||||
|
||||
# Minimap
|
||||
minimap-vim = {
|
||||
url = "github:wfxr/minimap.vim";
|
||||
|
|
|
@ -95,6 +95,7 @@ with lib; let
|
|||
"lsp-lines"
|
||||
"vim-dirtytalk"
|
||||
"highlight-undo"
|
||||
"nvim-docs-view"
|
||||
];
|
||||
# You can either use the name of the plugin or a package.
|
||||
pluginType = with types;
|
||||
|
|
|
@ -16,5 +16,6 @@ _: {
|
|||
./lightbulb
|
||||
./lspkind
|
||||
./lsplines
|
||||
./nvim-docs-view
|
||||
];
|
||||
}
|
||||
|
|
26
modules/lsp/nvim-docs-view/config.nix
Normal file
26
modules/lsp/nvim-docs-view/config.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf nvim;
|
||||
inherit (builtins) toString;
|
||||
|
||||
cfg = config.vim.lsp.nvim-docs-view;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
vim = {
|
||||
lsp.enable = true;
|
||||
startPlugins = ["nvim-docs-view"];
|
||||
|
||||
luaConfigRC.nvim-docs-view = nvim.dag.entryAnywhere ''
|
||||
require("docs-view").setup {
|
||||
position = "${cfg.position}",
|
||||
width = ${toString cfg.width},
|
||||
height = ${toString cfg.height},
|
||||
update_mode = "${cfg.updateMode}",
|
||||
}
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
6
modules/lsp/nvim-docs-view/default.nix
Normal file
6
modules/lsp/nvim-docs-view/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
_: {
|
||||
imports = [
|
||||
./config.nix
|
||||
./nvim-docs-view.nix
|
||||
];
|
||||
}
|
41
modules/lsp/nvim-docs-view/nvim-docs-view.nix
Normal file
41
modules/lsp/nvim-docs-view/nvim-docs-view.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{lib, ...}: let
|
||||
inherit (lib) mkEnableOption mkOption types;
|
||||
in {
|
||||
options.vim.lsp.nvim-docs-view = {
|
||||
enable = mkEnableOption "nvim-docs-view, for displaying lsp hover documentation in a side panel.";
|
||||
|
||||
position = mkOption {
|
||||
type = types.enum ["left" "right" "top" "bottom"];
|
||||
default = "right";
|
||||
description = ''
|
||||
Where to open the docs view panel
|
||||
'';
|
||||
};
|
||||
|
||||
height = mkOption {
|
||||
type = types.int;
|
||||
default = 10;
|
||||
description = ''
|
||||
Height of the docs view panel if the position is set to either top or bottom
|
||||
'';
|
||||
};
|
||||
|
||||
width = mkOption {
|
||||
type = types.int;
|
||||
default = 60;
|
||||
description = ''
|
||||
Width of the docs view panel if the position is set to either left or right
|
||||
'';
|
||||
};
|
||||
|
||||
updateMode = mkOption {
|
||||
type = types.enum ["auto" "manual"];
|
||||
default = "auto";
|
||||
description = ''
|
||||
Determines the mechanism used to update the docs view panel content.
|
||||
- If auto, the content will update upon cursor move.
|
||||
- If manual, the content will only update once :DocsViewUpdate is called
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue