erknrio
8/23/2016 - 12:30 PM

Configuración para vim. Incluir en la home.

Configuración para vim. Incluir en la home.

set number
set title
set hlsearch
set incsearch
set showmatch

" No annoying sound on errors
set noerrorbells
set novisualbell
set t_vb=
set tm=500


" Set utf8 as standard encoding and en_US as the standard language
set encoding=utf8

" Syntax
colorscheme desert
set background=dark
syntax on
syntax enable

" Use spaces instead of tabs
set expandtab

" Be smart when using tabs ;)
set smarttab

" 1 tab == 4 spaces
set shiftwidth=4
set tabstop=4

" Linebreak on 500 characters
set lbr
set tw=500

set ai "Auto indent
set si "Smart indent
set wrap "Wrap lines