Created
August 15, 2024 15:40
-
-
Save leandroudala/715215046e178e701a4712336012398a to your computer and use it in GitHub Desktop.
Parâmetros para o VIM RC
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
" Desabilitando compatibilidade com VI, para evitar problemas | |
set nocompatible | |
" Habilitar a deteccao do tipo de arquivo | |
filetype on | |
" Habilitar plugins baixados para o tipo de arquivo | |
filetype plugin on | |
" identar conteudo de acordo com o tipo de arquivo | |
filetype indent on | |
" habilitar highlights de sintaxe | |
syntax on | |
" adicionar numeros no inicio de cada linha | |
set number | |
" largura da identacao em 4 colunas | |
set shiftwidth=4 | |
" cada tab vale 4 colunas. | |
set tabstop=4 | |
" usar espaco ao inves de tab '\t' | |
set expandtab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment