neovim: add peristant undo file

This commit is contained in:
Felix Albrigtsen 2023-12-28 16:23:44 +01:00 committed by Felix Albrigtsen
parent db68083382
commit 8cf555833b
1 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,7 @@
{ pkgs, lib, inputs, config, ...}:
{
let
undoDir = "${config.home.homeDirectory}/.vim/undo";
in {
programs.neovim = {
enable = true;
defaultEditor = true;
@ -41,6 +43,11 @@
set tabstop=2
set expandtab
set undofile
set undodir=${undoDir}
set undolevels=1000
set undoreload=10000
" Integrate status with lightline
let g:lightline = {
\ 'active': {
@ -117,4 +124,7 @@
map <Leader><Space> :noh<CR>
'';
};
# Create undo directory
home.activation.vimUndoDir = lib.hm.dag.entryAfter ["writeBoundary"] "mkdir -p ${undoDir}";
}