Dotfiles with the latest changes

This commit is contained in:
2024-10-28 14:02:46 +01:00
parent d39336c479
commit fa6b78a382
108 changed files with 4459 additions and 467 deletions

View File

@@ -0,0 +1,22 @@
return {
"Myzel394/easytables.nvim",
event = { "BufReadPre", "BufNewFile" },
config = function()
local easytables = require("easytables")
local wk = require("which-key")
easytables.setup({})
wk.add({
{ "<leader>m", group = "markdown", icon = "" },
{
"<leader>mt",
function()
vim.ui.input({ prompt = "width x height: " }, function(input)
vim.cmd("EasyTablesCreateNew " .. input)
end)
end,
},
})
end,
}