Skip to content

Instantly share code, notes, and snippets.

@violetyk
Last active August 29, 2015 14:14
Show Gist options
  • Save violetyk/7f992545982dddbcfe8a to your computer and use it in GitHub Desktop.
Save violetyk/7f992545982dddbcfe8a to your computer and use it in GitHub Desktop.
vim-sessionの設定
" session {{{
NeoBundle 'xolox/vim-session', {
\ 'depends' : 'xolox/vim-misc',
\ }
" }}}
if neobundle#is_sourced('vim-session') " {{{
let g:session_directory = $HOME . '/.vimsessions/'
let g:session_autoload = 'no'
let g:session_autosave = 'yes'
let g:session_default_to_last = 1
let g:session_default_overwrite = 1
endif " }}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment