aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-04-06 02:16:34 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-04-06 02:16:34 -0500
commit7bd19d8547ebd422ae25fe6a7022179451f7d5f0 (patch)
tree23e9299767e7426a2ad05516537768ffcbec8da7 /nvim
parentb108db9e511ea8bc268ce6082517d8ae820497ce (diff)
fix(nvim): add neotest dep and remove luasnip
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/lazy-lock.json3
-rw-r--r--nvim/.config/nvim/lua/plugins/neotest.lua2
-rw-r--r--nvim/.config/nvim/lua/tobyvin/lsp/capabilities.lua2
3 files changed, 4 insertions, 3 deletions
diff --git a/nvim/.config/nvim/lazy-lock.json b/nvim/.config/nvim/lazy-lock.json
index a8eebf6..fb39092 100644
--- a/nvim/.config/nvim/lazy-lock.json
+++ b/nvim/.config/nvim/lazy-lock.json
@@ -1,13 +1,11 @@
{
"Comment.nvim": { "branch": "master", "commit": "e51f2b142d88bb666dcaa77d93a07f4b419aca70" },
- "LuaSnip": { "branch": "master", "commit": "8ae1dedd988eb56441b7858bd1e8554dfadaa46d" },
"SchemaStore.nvim": { "branch": "main", "commit": "80d701841487f72bf9d3fa56b25146b95e190502" },
"cellular-automaton.nvim": { "branch": "main", "commit": "b7d056dab963b5d3f2c560d92937cb51db61cb5b" },
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
"cmp-cmdline": { "branch": "main", "commit": "d250c63aa13ead745e3a40f61fdd3470efde3923" },
"cmp-nvim-lsp": { "branch": "main", "commit": "5af77f54de1b16c34b23cba810150689a3a90312" },
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
- "cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" },
"conform.nvim": { "branch": "master", "commit": "9d5ba06d6ee7418c674f498634617416d15b6239" },
"dressing.nvim": { "branch": "master", "commit": "18e5beb3845f085b6a33c24112b37988f3f93c06" },
"epo.nvim": { "branch": "main", "commit": "78765df88e62f817f4ce934bc07b76c97ba2c75b" },
@@ -34,6 +32,7 @@
"nvim-jdtls": { "branch": "master", "commit": "8eb5f0dbe6e126b392ddcaf45893358619893e45" },
"nvim-lint": { "branch": "master", "commit": "3317b73ec3eb76cd8ca83e05880c07c83e368c1e" },
"nvim-lspconfig": { "branch": "master", "commit": "e13ef0c5c8ccdbb9c84682522d6ad5923a65c1a8" },
+ "nvim-nio": { "branch": "master", "commit": "5800f585def265d52f1d8848133217c800bcb25d" },
"nvim-notify": { "branch": "master", "commit": "5371f4bfc1f6d3adf4fe9d62cd3a9d44356bfd15" },
"nvim-texlabconfig": { "branch": "master", "commit": "b817297fd07bd6c127df56d01f439f2f838c49ed" },
"nvim-treesitter": { "branch": "master", "commit": "e6cd337e30962cc0982d51fa03beedcc6bc70e3d" },
diff --git a/nvim/.config/nvim/lua/plugins/neotest.lua b/nvim/.config/nvim/lua/plugins/neotest.lua
index 0a68655..1c952f7 100644
--- a/nvim/.config/nvim/lua/plugins/neotest.lua
+++ b/nvim/.config/nvim/lua/plugins/neotest.lua
@@ -2,11 +2,13 @@
local M = {
"nvim-neotest/neotest",
dependencies = {
+ "nvim-neotest/nvim-nio",
"nvim-lua/plenary.nvim",
"nvim-neotest/neotest-go",
"nvim-neotest/neotest-plenary",
"nvim-neotest/neotest-python",
"rouge8/neotest-rust",
+ "nvim-treesitter/nvim-treesitter",
},
}
diff --git a/nvim/.config/nvim/lua/tobyvin/lsp/capabilities.lua b/nvim/.config/nvim/lua/tobyvin/lsp/capabilities.lua
index f88a016..01cbc01 100644
--- a/nvim/.config/nvim/lua/tobyvin/lsp/capabilities.lua
+++ b/nvim/.config/nvim/lua/tobyvin/lsp/capabilities.lua
@@ -4,7 +4,7 @@ local ms = vim.lsp.protocol.Methods
local M = {
[ms.dollar_progress] = function(_, client)
-- See: https://github.com/neovim/neovim/pull/26098
- client.progress = vim.ringbuf(1024) --[[@as vim.lsp.Client.Progress]]
+ client.progress = vim.ringbuf(2048) --[[@as vim.lsp.Client.Progress]]
client.progress.pending = {}
end,
[ms.textDocument_documentHighlight] = function(bufnr)