This repository has been archived by the owner. It is now read-only.
Permalink
Please sign in to comment.
19
.gitignore
| @@ -0,0 +1,19 @@ | ||
| +#Vim backup files | ||
| +*~ | ||
| +#Python compiled files | ||
| +*.pyc | ||
| + | ||
| +#Git-svn created .gitignore | ||
| +/Release | ||
| +/Debug | ||
| +/vc90.pdb | ||
| +/synergy.ncb | ||
| +/synergy.vcproj.ADOBENET.ssbarnea.user | ||
| +/bin | ||
| +/tool | ||
| +/config.h | ||
| +/tags | ||
| + | ||
| +#doxygen | ||
| +/doc/doxygen | ||
| +/doc/doxygen.cfg |
| @@ -0,0 +1,13 @@ | ||
| +"Instructions | ||
| +"Download vim script 411 | ||
| +"http://www.vim.org/scripts/script.php?script_id=441 | ||
| +"Install localvimrc.vim to .vim/plugin | ||
| +" | ||
| +" Hint: You can disable it asking before sourcing a file by adding this to | ||
| +" your .vimrc: let g:localvimrc_ask=0 | ||
| + | ||
| +set nosmarttab | ||
| +set noexpandtab | ||
| +set shiftwidth=8 | ||
| +set softtabstop=0 | ||
| +set tabstop=4 |
Oops, something went wrong.
0 comments on commit
4882418