-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
54 lines (41 loc) · 899 Bytes
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"Mostra números das linhas
set number
"1 tab = 2 espaços
set shiftwidth=2
set tabstop=2
"Espaços ao inves de tabs
set expandtab
set autoindent
filetype plugin indent on
"Mostra linha e coluna atuais
set ruler
"Deixa a barra de comandos com 2 linhas
set cmdheight=2
"Deixa busca sem case
set ignorecase
"Highlight nos resultados da busca
set hlsearch
"Busca incremental
set incsearch
"Highlight de matching parenthesis
set showmatch
"Cor de fundo
colorscheme desert
set background=dark
"Faz régua na coluna 81
set colorcolumn=81
highlight ColorColumn ctermbg=DarkGray
"Tira todos os backups
set nobackup
set nowb
set noswapfile
"Deixa a linha de status mais bonita
set laststatus=2
set statusline=\ %{HasPaste()}%F%m%r%h\ %w\ \ CWD:\ %r%{getcwd()}%h\ \ \ Line:\ %l
" Returns true if paste mode is enabled
function! HasPaste()
if &paste
return 'PASTE MODE '
en
return ''
endfunction