update
This commit is contained in:
parent
67df419445
commit
902aee1bda
1 changed files with 34 additions and 8 deletions
28
init.lua
28
init.lua
|
|
@ -11,6 +11,13 @@ if not vim.loop.fs_stat(lazypath) then
|
||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
|
-- https://github.com/nvim-neotest/neotest
|
||||||
|
-- https://github.com/nvim-neorg/neorg
|
||||||
|
-- https://github.com/ggandor/leap.nvim
|
||||||
|
-- https://github.com/michaelb/sniprun
|
||||||
|
-- https://github.com/iamcco/markdown-preview.nvim
|
||||||
|
-- https://github.com/mrjones2014/legendary.nvim
|
||||||
|
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
{ "NeogitOrg/neogit", dependencies = "nvim-lua/plenary.nvim" },
|
{ "NeogitOrg/neogit", dependencies = "nvim-lua/plenary.nvim" },
|
||||||
"lewis6991/fileline.nvim",
|
"lewis6991/fileline.nvim",
|
||||||
|
|
@ -446,8 +453,27 @@ wk.register({
|
||||||
o = { neogit.open, "Open Git" },
|
o = { neogit.open, "Open Git" },
|
||||||
},
|
},
|
||||||
r = {
|
r = {
|
||||||
|
name = "Run",
|
||||||
|
j = {
|
||||||
|
"<cmd>OverseerRun<cr>",
|
||||||
|
"Job",
|
||||||
|
},
|
||||||
|
t = {
|
||||||
|
"<cmd>TestNearest<cr>",
|
||||||
|
"Test",
|
||||||
|
},
|
||||||
|
f = {
|
||||||
|
"<cmd>TestFile<cr>",
|
||||||
|
"Test File",
|
||||||
|
},
|
||||||
|
s = {
|
||||||
|
"<cmd>TestSuite<cr>",
|
||||||
|
"Test Suite",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
p = {
|
||||||
name = "Refresh",
|
name = "Refresh",
|
||||||
d = { vim.diagnostic.reset, "Refresh diagnostic" },
|
d = { vim.diagnostic.reset, "Diagnostic" },
|
||||||
},
|
},
|
||||||
e = {
|
e = {
|
||||||
name = "Eval",
|
name = "Eval",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue