mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
13 lines
275 B
Lua
13 lines
275 B
Lua
return {
|
|
-- Don't measure startuptime
|
|
{ "dstein64/vim-startuptime", enabled = false },
|
|
|
|
-- Session management.
|
|
{
|
|
"folke/persistence.nvim",
|
|
opts = {
|
|
dir = vim.fn.expand(vim.fn.stdpath("config") .. "/sessions/"),
|
|
},
|
|
},
|
|
}
|