Pular para o conteúdo

Vim (.vimrc)

Arquivo de configuração do vim de uma forma mais compacta;

100% de compatibilidade;

auto-identação do seu código fonte;

linhas numeradas;

etc...
Sidnei T. Albainski Junior junior_utp
Hits: 9.116 Categoria: Vim
  • Download
  • Indicar
  • Denunciar
O Viva o Linux depende da receita de anúncios para se manter. Ative os cookies aqui para nos patrocinar.
Não conseguimos carregar os anúncios. Se usa bloqueador, considere liberar o Viva o Linux para nos patrocinar.
Download .vimrc
O Viva o Linux depende da receita de anúncios para se manter. Ative os cookies aqui para nos patrocinar.
Não conseguimos carregar os anúncios. Se usa bloqueador, considere liberar o Viva o Linux para nos patrocinar.

Esconder código-fonte

" Configuration file for vim

" Normally we use vim-extensions. If you want true vi-compatibility
" remove change the following statements
set nocompatible   " Use Vim defaults instead of 100% vi compatibility
set backspace=indent,eol,start   " more powerful backspacing

" Now we set some defaults for the editor 
set nu      " numera linha ou se preferir /set nonu
set autoindent      " always set autoindenting on
set textwidth=0      " Don't wrap words by default
set nobackup      " Don't keep a backup file
set viminfo='20,\"50   " read/write a .viminfo file, don't store more than
         " 50 lines of registers
set history=50      " keep 50 lines of command line history
set ruler      " show the cursor position all the time

" Suffixes that get lower priority when doing tab completion for filenames.
" These are files we are not likely to want to edit or read.
set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc

" We know xterm-debian is a color terminal
if &term =~ "xterm-debian" || &term =~ "xterm-xfree86"
  set t_Co=16
  set t_Sf=[3%dm
  set t_Sb=[4%dm
endif

" Make p in Visual mode replace the selected text with the "" register.
vnoremap p <Esc>:let current_reg = @"<CR>gvdi<C-R>=current_reg<CR><Esc>

" Vim5 and later versions support syntax highlighting. Uncommenting the next
" line enables syntax highlighting by default.
syntax on   "ativa o highligt

" Debian uses compressed helpfiles. We must inform vim that the main
" helpfiles is compressed. Other helpfiles are stated in the tags-file.
set helpfile=$VIMRUNTIME/doc/help.txt.gz

if has("autocmd")
 " Enabled file type detection
 " Use the default filetype settings. If you also want to load indent files
 " to automatically do language-dependent indenting add 'indent' as well.

endif " has ("autocmd")

" Some Debian-specific things
augroup filetype
  au BufRead reportbug.*      set ft=mail
  au BufRead reportbug-*      set ft=mail
augroup END

" The following are commented out as they cause vim to behave a lot
" different from regular vi. They are highly recommended though.
"set showcmd      " Show (partial) command in status line.
"set showmatch      " Show matching brackets.
"set ignorecase      " Do case insensitive matching
"set incsearch      " Incremental search
"set autowrite      " Automatically save before commands like :next and :make



map #2 <esc>O<esc>i<html><head><title>titulo</title></head><body><esc>
map #3 <esc>O<esc>i#include <stdio.h><esc><return>i#include <stdlib.h><esc> 
O Viva o Linux depende da receita de anúncios para se manter. Ative os cookies aqui para nos patrocinar.
Não conseguimos carregar os anúncios. Se usa bloqueador, considere liberar o Viva o Linux para nos patrocinar.
Nenhuma configuração encontrada.

Vim (vimrc)

Vim (.vimrc)

vim (vimrc)

vim (vimrc)

VIM <3 (vimrc)

#1 Comentário enviado por linuxdeveloper em 15/04/2004 - 15:49h
essa foi muito util valeu
linux developer
#2 Comentário enviado por soro em 10/02/2006 - 17:48h
pra mim a sintaxe colorida só tá funcionando pro usuário (o usuário não tem nenhum .vimrc)

como root não cosigo usar a sintaxe colorida, mesmo criando um .vimrc c/ a linha "syntax on".......o q está errado?
#3 Comentário enviado por junior_utp em 10/02/2006 - 19:29h
amigao cada usuario tem q ter um .vimrc... pois pode ser que vc queira que somente o usuario XXXX tenha privilegios de configuracao...

espero ter ajudado.


free your mind... use linux forever.
#4 Comentário enviado por soro em 11/02/2006 - 17:05h
?????

mas por q o "syntax on" não funciona c/ o root??
#5 Comentário enviado por comfaa em 28/10/2008 - 10:48h
muito bom !!
#6 Comentário enviado por edincokin em 27/10/2010 - 23:14h
Muito bom perfieto, obrigado !

Contribuir com comentário

Entre na sua conta para comentar.