1
Fork 0

Set up more persistent directories

This commit is contained in:
Matei Adriel 2023-12-12 14:32:06 +01:00
parent d93cb11e2f
commit 50152c3db8
No known key found for this signature in database
17 changed files with 106 additions and 75 deletions
home/features/neovim

View file

@ -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"
];
# }}}
}