Skip to content

Instantly share code, notes, and snippets.

@gcman105
Created July 30, 2017 07:54
Show Gist options
  • Save gcman105/1edd718d847d00c56decd74dd30a714b to your computer and use it in GitHub Desktop.
Save gcman105/1edd718d847d00c56decd74dd30a714b to your computer and use it in GitHub Desktop.
init.vim template
" Source init.vim from my dotfiles repository --------------------------------
source /home/r8admin/dotfiles/nvim/init.vim
" Add any system specific settings -----------------------
" Direct Neovim to it's Python3 Virtualenv
" let g:python3_host_prog = '/home/r8admin/.virtualenvs/py3neovim/bin/python3'
"NOTE that the directories need to be setup for this next section !!!!!!!!!!
"Setup backup location and enable
set backupdir=$HOME/temp/vim_backups/
set backup
"Setup the Vim swap files location
set directory=$HOME/temp/vim_swp/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment