Created
August 9, 2012 16:37
-
-
Save guerrerocarlos/3305687 to your computer and use it in GitHub Desktop.
Some vim tunning
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
syntax on | |
filetype indent plugin on | |
au FileType python setlocal tabstop=8 expandtab shiftwidth=4 softtabstop=4 | |
"F2 activa y desactiva el auto-indent para poder pegar sin que se dañe el | |
""contenido | |
nnoremap <F2> :set invpaste paste?<CR> | |
nnoremap <F8> :tabn<CR> | |
nnoremap <F7> :tabp<CR> | |
set pastetoggle=<F2> | |
set showmode | |
"Para que muestre fila y columna en la que se encuentra | |
"set ruler | |
" | |
" | |
"Para poner a funcionar SnipMate por defecto: | |
:filetype plugin on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment