Created
July 29, 2020 14:01
-
-
Save luisangelorjr/f51b60655a91fe1ea933c9e8ce49c317 to your computer and use it in GitHub Desktop.
.vimrc utilizado por mim em projetos pessoais e trabalho
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
set number | |
set history=500 | |
filetype plugin on | |
filetype indent on | |
set autoread | |
au FocusGained,BufEnter * checktime | |
set wildmenu | |
set ruler | |
set cmdheight=1 | |
set backspace=eol,start,indent | |
set hlsearch | |
set lazyredraw | |
set showmatch | |
syntax enable | |
set background=dark | |
set encoding=utf-8 | |
set fileencoding=utf-8 | |
set ffs=unix,dos,mac | |
set expandtab | |
set smarttab | |
set shiftwidth=2 | |
set tabstop=2 | |
set ai | |
set si | |
set wrap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment