mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-13 01:21:13 +00:00
[neovim] Add grug-far plugin
This commit is contained in:
parent
29a97b4aa3
commit
bb50eda917
@ -140,7 +140,7 @@ require("lazy").setup({
|
||||
dependencies = {
|
||||
{ "Shatur/neovim-session-manager" },
|
||||
},
|
||||
priority = 100,
|
||||
event = "VeryLazy",
|
||||
},
|
||||
{ "nvim-treesitter/nvim-treesitter", event = "BufReadPost" },
|
||||
{
|
||||
@ -164,6 +164,10 @@ require("lazy").setup({
|
||||
version = "*",
|
||||
build = "cp ./*.py ~/.config/kitty/",
|
||||
},
|
||||
{
|
||||
"MagicDuck/grug-far.nvim",
|
||||
event = "VeryLazy",
|
||||
},
|
||||
|
||||
-- cmp plugins
|
||||
{
|
||||
|
1
.config/nvim/lua/plugins/grug-far.lua
Normal file
1
.config/nvim/lua/plugins/grug-far.lua
Normal file
@ -0,0 +1 @@
|
||||
require("grug-far").setup({})
|
@ -23,3 +23,4 @@ require("plugins.align")
|
||||
require("plugins.ufo")
|
||||
require("plugins.bufferline")
|
||||
require("plugins.lualine")
|
||||
require("plugins.grug-far")
|
||||
|
@ -34,6 +34,10 @@ vim.api.nvim_create_user_command("RunTest", function()
|
||||
neotest.run.run()
|
||||
end, {})
|
||||
|
||||
vim.api.nvim_create_user_command("DebugTest", function()
|
||||
neotest.run.run({ strategy = "dap" })
|
||||
end, {})
|
||||
|
||||
vim.api.nvim_create_user_command("RunTestFile", function()
|
||||
neotest.run.run(vim.fn.expand("%"))
|
||||
end, {})
|
||||
|
Loading…
Reference in New Issue
Block a user