aboutsummaryrefslogtreecommitdiff
path: root/lua/user/pack.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-03-04 08:44:10 +0200
committersrdusr <trevorgray@srdusr.com>2023-03-04 08:44:10 +0200
commit54791ebf276f93ae27dc0b39261dacc69dfb1c72 (patch)
tree54c291c69f7edd391f32e43b27bee39707c9cfba /lua/user/pack.lua
parent2e31d4001428c9a672abfca01b44c0584b10803b (diff)
downloaddotfiles-54791ebf276f93ae27dc0b39261dacc69dfb1c72.tar.gz
dotfiles-54791ebf276f93ae27dc0b39261dacc69dfb1c72.zip
Add "https://git.sr.ht/~whynothugo/lsp_lines.nvim"
Diffstat (limited to 'lua/user/pack.lua')
-rw-r--r--lua/user/pack.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/user/pack.lua b/lua/user/pack.lua
index a543419..0fa3a69 100644
--- a/lua/user/pack.lua
+++ b/lua/user/pack.lua
@@ -65,6 +65,12 @@ return packer.startup(function(use)
use("williamboman/mason.nvim") -- Package manager to install and manage LSP servers, DAP servers, linters and formatters
use("williamboman/mason-lspconfig.nvim") -- Bridges mason.nvim with nvim-lspconfig to help use them together
use("neovim/nvim-lspconfig") -- Collection of LSP configs
+ use({
+ "https://git.sr.ht/~whynothugo/lsp_lines.nvim",
+ config = function()
+ require("lsp_lines").setup()
+ end,
+ })
-- Debugger
use("mfussenegger/nvim-dap") -- Debug Adapter Protocol client implementation for Neovim