setup workspaces

pull/97/head
Julien Lin 2024-10-09 16:53:22 +02:00
parent 3abc8e1dce
commit fca3d205db
1 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,51 @@
return {
{
"natecraddock/workspaces.nvim",
opts = {
-- path to a file to store workspaces data in
-- on a unix system this would be ~/.local/share/nvim/workspaces
path = vim.fn.stdpath("data") .. "/workspaces",
-- to change directory for nvim (:cd), or only for window (:lcd)
-- deprecated, use cd_type instead
-- global_cd = true,
-- controls how the directory is changed. valid options are "global", "local", and "tab"
-- "global" changes directory for the neovim process. same as the :cd command
-- "local" changes directory for the current window. same as the :lcd command
-- "tab" changes directory for the current tab. same as the :tcd command
--
-- if set, overrides the value of global_cd
cd_type = "global",
-- sort the list of workspaces by name after loading from the workspaces path.
sort = true,
-- sort by recent use rather than by name. requires sort to be true
mru_sort = true,
-- option to automatically activate workspace when opening neovim in a workspace directory
auto_open = false,
-- option to automatically activate workspace when changing directory not via this plugin
-- set to "autochdir" to enable auto_dir when using :e and vim.opt.autochdir
-- valid options are false, true, and "autochdir"
auto_dir = false,
-- enable info-level notifications after adding or removing a workspace
notify_info = true,
-- lists of hooks to run after specific actions
-- hooks can be a lua function or a vim command (string)
-- lua hooks take a name, a path, and an optional state table
-- if only one hook is needed, the list may be omitted
hooks = {
add = {},
remove = {},
rename = {},
open_pre = {},
open = { "Telescope find_files" },
},
},
},
}