Skip to content

Instantly share code, notes, and snippets.

@leandroudala
Created August 15, 2024 15:40
Show Gist options
  • Save leandroudala/715215046e178e701a4712336012398a to your computer and use it in GitHub Desktop.
Save leandroudala/715215046e178e701a4712336012398a to your computer and use it in GitHub Desktop.
Parâmetros para o VIM RC
" 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