Created
July 30, 2017 07:54
-
-
Save gcman105/1edd718d847d00c56decd74dd30a714b to your computer and use it in GitHub Desktop.
init.vim template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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