feat(neovim): add lsp_lines plugin
parent
137de9bd7d
commit
c89fe3b30e
|
@ -12,6 +12,17 @@ let
|
|||
};
|
||||
meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lsp-signature-help";
|
||||
};
|
||||
|
||||
lsp_lines-nvim = pkgs.vimUtils.buildVimPlugin {
|
||||
name = "lsp_lines.nvim";
|
||||
version = "2022-01-14";
|
||||
src = pkgs.fetchgit {
|
||||
url = "https://git.sr.ht/~whynothugo/lsp_lines.nvim";
|
||||
rev = "22ef87c6b2039aac069bfba1c5be5cd26c27b752";
|
||||
sha256 = "prhBuAM1jNxZz7F1SUlUda7dKJ/0eXq3Lw6XB9x7zR8=";
|
||||
};
|
||||
meta.homepage = "https://git.sr.ht/~whynothugo/lsp_lines.nvim";
|
||||
};
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
|
@ -84,6 +95,7 @@ in
|
|||
rust-tools-nvim
|
||||
lua-dev-nvim
|
||||
null-ls-nvim
|
||||
lsp_lines-nvim
|
||||
];
|
||||
|
||||
extraConfig = ''
|
||||
|
|
|
@ -105,3 +105,10 @@ null_ls.setup({
|
|||
|
||||
on_attach = on_attach,
|
||||
})
|
||||
|
||||
-- setup lsp_lines
|
||||
local lsp_lines = require("lsp_lines")
|
||||
lsp_lines.setup()
|
||||
vim.diagnostic.config({
|
||||
virtual_text = false,
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue