nixpkgs/home/programs/neovim/configuration/ftdetect/au_vdebug.vim
Daniel Siepmann e64f6b8030
Migrate whole Neovim configuration into expected structure
That way I can load my whole configuration as a plugin.
I no longer need to explicitly set any configuration via nix as init.vim
or such things.
2022-03-22 09:38:34 +01:00

7 lines
160 B
VimL

augroup vdebug
autocmd!
" Don't fold in debugger as he uses his own collapse feature.
autocmd BufEnter Debugger* setlocal foldlevel=99
augroup END