feat(neovim): add lsp_lines plugin

main
mandlm 2022-07-25 08:48:10 +02:00
parent 137de9bd7d
commit c89fe3b30e
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
2 changed files with 19 additions and 0 deletions

View File

@ -12,6 +12,17 @@ let
}; };
meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lsp-signature-help"; 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 in
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
@ -84,6 +95,7 @@ in
rust-tools-nvim rust-tools-nvim
lua-dev-nvim lua-dev-nvim
null-ls-nvim null-ls-nvim
lsp_lines-nvim
]; ];
extraConfig = '' extraConfig = ''

View File

@ -105,3 +105,10 @@ null_ls.setup({
on_attach = on_attach, on_attach = on_attach,
}) })
-- setup lsp_lines
local lsp_lines = require("lsp_lines")
lsp_lines.setup()
vim.diagnostic.config({
virtual_text = false,
})