diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-03-04 08:44:10 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-03-04 08:44:10 +0200 |
| commit | 54791ebf276f93ae27dc0b39261dacc69dfb1c72 (patch) | |
| tree | 54c291c69f7edd391f32e43b27bee39707c9cfba | |
| parent | 2e31d4001428c9a672abfca01b44c0584b10803b (diff) | |
| download | dotfiles-54791ebf276f93ae27dc0b39261dacc69dfb1c72.tar.gz dotfiles-54791ebf276f93ae27dc0b39261dacc69dfb1c72.zip | |
Add "https://git.sr.ht/~whynothugo/lsp_lines.nvim"
| -rw-r--r-- | lua/user/pack.lua | 6 |
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 |
