.dotfiles/.config/nvim/lua/nvwynd/autocmds.lua

30 lines
789 B
Lua
Raw Normal View History

-- used for when lazyness takes over and I'm using a mouse to click around in neo-tree
-- if insert mode is active then neo-tree won't behave as expected, so we want to stop it
vim.api.nvim_create_autocmd("BufEnter", {
pattern = { "*neo-tree*" },
callback = function()
vim.cmd("stopinsert")
end,
})
2024-05-24 16:07:28 +03:00
vim.api.nvim_create_user_command("ListPlugins", function()
local plugins = require("lazy").plugins()
local f, err = io.open("plugins", "w+")
if f then
for _, v in ipairs(plugins) do
local plugin = string.format("[%s](%s)\n", v.name, v.url)
f:write(plugin)
end
f:close()
else
print("Error opening file: " .. err)
end
end, {})
vim.api.nvim_create_user_command("CountWords", function()
local words = vim.fn.wordcount()["words"]
print("Words: " .. words)
end, {})