feat(neovim): add lsp_line plugin
This commit is contained in:
parent
c139cce510
commit
a9e75d7933
2 changed files with 7 additions and 0 deletions
|
@ -87,6 +87,11 @@ in
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
plugin = lsp_lines-nvim;
|
||||||
|
type = "lua";
|
||||||
|
config = (builtins.readFile ./files/lsp-line.lua);
|
||||||
|
}
|
||||||
{
|
{
|
||||||
plugin = nvim-lspconfig;
|
plugin = nvim-lspconfig;
|
||||||
type = "lua";
|
type = "lua";
|
||||||
|
|
2
modules/home-manager/cli/neovim/files/lsp-line.lua
Normal file
2
modules/home-manager/cli/neovim/files/lsp-line.lua
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
require('lsp_lines').setup()
|
||||||
|
vim.diagnostic.config({ virtual_lines = true })
|
Loading…
Add table
Add a link
Reference in a new issue