mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
plugins/utils: move to by-name
This commit is contained in:
parent
faff32b9f1
commit
52f125679f
195 changed files with 2 additions and 102 deletions
|
@ -1,48 +0,0 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.auto-session.enable = true;
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.auto-session = {
|
||||
enable = true;
|
||||
|
||||
logLevel = "error";
|
||||
autoSession = {
|
||||
enabled = true;
|
||||
enableLastSession = false;
|
||||
rootDir = {
|
||||
__raw = "vim.fn.stdpath 'data' .. '/sessions/'";
|
||||
};
|
||||
createEnabled = true;
|
||||
suppressDirs = null;
|
||||
allowedDirs = [ ];
|
||||
useGitBranch = true;
|
||||
};
|
||||
autoSave = {
|
||||
enabled = true;
|
||||
};
|
||||
autoRestore = {
|
||||
enabled = true;
|
||||
};
|
||||
cwdChangeHandling = {
|
||||
restoreUpcomingSession = true;
|
||||
preCwdChangedHook = null;
|
||||
postCwdChangedHook = null;
|
||||
};
|
||||
bypassSessionSaveFileTypes = [ ];
|
||||
sessionLens = {
|
||||
loadOnSetup = true;
|
||||
themeConf = {
|
||||
winblend = 10;
|
||||
border = true;
|
||||
};
|
||||
previewer = false;
|
||||
sessionControl = {
|
||||
controlDir = "vim.fn.stdpath 'data' .. '/auto_session/'";
|
||||
controlFilename = "session_control.json";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue