mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 05:45:58 +01:00
9 lines
202 B
Nix
9 lines
202 B
Nix
{lib, ...}:
|
|
with lib;
|
|
with builtins; {
|
|
options.vim.lsp = {
|
|
lsplines = {
|
|
enable = mkEnableOption "diagnostics using virtual lines on top of the real line of code. [lsp_lines]";
|
|
};
|
|
};
|
|
}
|