Created
April 10, 2013 10:09
-
-
Save MindTwister/5353396 to your computer and use it in GitHub Desktop.
This file contains 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
"Change default folder for ~ and .swp files | |
if( expand($TEMP) == "" ) | |
"Default for linux | |
let s:tempFolder = "/tmp" | |
else | |
"Default for windows | |
let s:tempFolder = expand($TEMP) | |
endif | |
let &directory=s:tempFolder | |
let &backupdir=s:tempFolder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment