Set up more persistent directories
This commit is contained in:
parent
d93cb11e2f
commit
50152c3db8
17 changed files with 106 additions and 75 deletions
home/features/neovim
|
@ -85,6 +85,7 @@ return {
|
|||
end
|
||||
end,
|
||||
cond = env.vscode.not_active(),
|
||||
enabled = false,
|
||||
},
|
||||
|
||||
{
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# TODO(imperanence): handle persistence of things like harpoon, lazy, etc
|
||||
{ pkgs, lib, config, inputs, ... }:
|
||||
let
|
||||
# {{{ extraPackages
|
||||
|
@ -326,7 +325,7 @@ in
|
|||
# }}}
|
||||
# }}}
|
||||
# {{{ visual
|
||||
# The line between `ui` and `visual is a bit rought. I currenlty mostly judge
|
||||
# The line between `ui` and `visual` is a bit rought. I currenlty mostly judge
|
||||
# it by vibe.
|
||||
# {{{ indent-blankline
|
||||
satellite.neovim.lazy.indent-blankline = {
|
||||
|
@ -665,4 +664,14 @@ in
|
|||
# }}}
|
||||
# }}}
|
||||
# }}}
|
||||
# {{{ Persistence
|
||||
satellite.persistence.at.state.apps.neovim.directories = [
|
||||
".local/state/nvim"
|
||||
"${config.xdg.dataHome}/nvim"
|
||||
];
|
||||
|
||||
satellite.persistence.at.cache.apps.neovim.directories = [
|
||||
"${config.xdg.cacheHome}/nvim"
|
||||
];
|
||||
# }}}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue