diff options
author | Teddy Wing | 2017-03-13 15:55:16 +0100 |
---|---|---|
committer | Teddy Wing | 2017-03-13 15:55:16 +0100 |
commit | 942aba85eb8a3305b86ead6ff9229737561c8fdc (patch) | |
tree | eb451321aa2643dfc55754a45a2ce6f068d8a2da | |
parent | ba653d03f2aa91c464e042f8b0c58bd7109197b4 (diff) | |
download | dotvim-942aba85eb8a3305b86ead6ff9229737561c8fdc.tar.bz2 |
Add projects/af83.vim
Create a new project-specific config for AF83. Add a project-specific
mapping to save the current Vim session to a file called 'vimsession'.
-rw-r--r-- | projects/af83.vim | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/projects/af83.vim b/projects/af83.vim new file mode 100644 index 0000000..7c070e0 --- /dev/null +++ b/projects/af83.vim @@ -0,0 +1,7 @@ +" af83 +augroup af83 + autocmd! + + autocmd BufRead,BufEnter $VIM_PROJECT_PATH_AF83/* + \ nnoremap <buffer> <leader>mk :mksession! vimsession<cr> +augroup END |