the best commit in neovim history, powered by mynamjeff

This commit is contained in:
Aram Markarov
2025-12-07 22:32:35 +01:00
parent 4b0cff995a
commit 1fc3263f82
3 changed files with 10 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
require'actions-preview'.setup{
}
+2
View File
@@ -3,6 +3,8 @@ local default_opts = {noremap = true}
map('n', '<leader>ff', "<cmd>lua require'telescope.builtin'.find_files({ find_command = {'rg', '--files', '--hidden', '-g', '!.git' }})<cr>", default_opts)
map({"n", "v"}, "<leader>ap", require("actions-preview").code_actions)
map("n", "<Tab>", "<Cmd>BufferLineCycleNext<CR>")
map("n", "<S-Tab>", "<Cmd>BufferLineCyclePrev<CR>")
+6
View File
@@ -1,4 +1,10 @@
return {
{
"aznhe21/actions-preview.nvim",
config = function()
require("actions-preview")
end,
},
{
"rachartier/tiny-inline-diagnostic.nvim",
event = "VeryLazy",