mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-14 15:51:13 +00:00
21 lines
632 B
Lua
21 lines
632 B
Lua
vim.api.nvim_create_user_command("CopyBufferPath", function()
|
|
local path = vim.fn.expand("%:p")
|
|
vim.fn.setreg("+", path)
|
|
vim.notify('Copied "' .. path .. '" to the clipboard!')
|
|
end, {})
|
|
|
|
vim.api.nvim_create_user_command("CopyDirectoryPath", function()
|
|
local path = vim.fn.expand("%:p:h")
|
|
vim.fn.setreg("+", path)
|
|
vim.notify('Copied "' .. path .. '" to the clipboard!')
|
|
end, {})
|
|
|
|
vim.api.nvim_create_user_command("RemoveTrailingSpaces", function()
|
|
vim.cmd("% s/\\s\\+$//e")
|
|
end, {})
|
|
|
|
vim.api.nvim_create_user_command("ReloadConfiguration", function()
|
|
vim.cmd("source $MYVIMRC")
|
|
vim.notify("Configuration reloaded")
|
|
end, {})
|