1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-03 17:49:26 +00:00

[neovim] Move from session_manager to projections

This commit is contained in:
2022-12-15 19:50:32 +01:00
parent bc172e2e98
commit 803f745102
8 changed files with 52 additions and 14 deletions

View File

@ -13,3 +13,8 @@ end, {})
vim.api.nvim_create_user_command("RemoveTrailingSpaces", function()
vim.cmd("% s/\\s\\+$//e")
end, {})
local workspace = require("projections.workspace")
vim.api.nvim_create_user_command("AddWorkspace", function()
workspace.add(vim.loop.cwd())
end, {})