diff --git a/core/plugins.vim b/core/plugins.vim index 40b5ef9..ecd0260 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -288,6 +288,10 @@ endif if g:is_mac || g:is_linux Plug 'sakhnik/nvim-gdb', { 'do': ':!./install.sh \| UpdateRemotePlugins' } endif + +" Session management plugin +Plug 'tpope/vim-obsession' +Plug 'dhruvasagar/vim-prosession' call plug#end() "}} "} @@ -939,5 +943,9 @@ endif """"""""""""""""""""""""""""""nvim-gdb settings"""""""""""""""""""""""""""""" nnoremap dp :GdbStartPDB python -m pdb % + + +""""""""""""""""""""""""""""""prosession settings"""""""""""""""""""""""""""""" +let g:prosession_dir = stdpath('data') . '/prosession' "}} "}