" ---parte editada por mim--- "
set tabstop=4 " define a tabulacao para 4, para formatacao k&r
set expandtab
set shiftwidth=4
set showmatch " mostrar onde esta o '{' ou '[' ou '(' quando se fecha um deles" set number " mostra numero nas linhas
syntax on " ativa as cores da syntax
set background=dark " syntax para fundo escuro
" set background=light " syntax para fundo claro
" ---parte retirada na internet--- "
" Configuration file for vim
set runtimepath=~/.vim,/etc/vim,/usr/share/vim/vimfiles,/usr/share/vim/addons, /usr/share/vim/vim63,/usr/share/vim/vimfiles,/usr/share/vim/addons/after, ~/.vim/after
" 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 autoindent " always set autoindenting on
" set linebreak " Don't wrap words by default
"set textwidth=80 " Don't wrap lines 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>
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.
filetype plugin on
endif " has ("autocmd")
" Set paper size from /etc/papersize if available (Debian-specific)
if filereadable('/etc/papersize')
let s:papersize = matchstr(system('/bin/cat /etc/papersize'), '\p*')
if strlen(s:papersize)
let &printoptions = "paper:" . s:papersize
endif
unlet! s:papersize
endif
" Source a global configuration file if available
if filereadable("/etc/vim/vimrc.local")
source /etc/vim/vimrc.local
endif
Comentários
[1] Comentário enviado por removido em 07/11/2005 - 12:31h
massa teu ~/.vimrc
dah pra complementar ele com o seguinte:
function InsertTabWrapper()
let col = col('.') - 1
if !col || getline('.')[col - 1] !~ '\k'
return "\<tab>"
else
return "\<c-p>"
endif
endfunction
inoremap <tab> <c-r>=InsertTabWrapper()<cr>
[3] Comentário enviado por humbhenri em 16/11/2005 - 22:34h
eu to usando o gvim e ta dando erro q nao to entendendo. Ele acusa erro numas linhas e fala de caractere nao conhecido:^M daí eu vou na linha e nao tem nada disso. Jah tentei por download e por ctrl-c ctrl-v e deu na mesma
[7] Comentário enviado por nexushu em 30/11/2005 - 10:31h
Cara to com um problema Ele acusa erro numas linhas e fala de caractere nao conhecido:^M daí eu vou na linha e nao tem nada disso. Jah tentei por download e por ctrl-c ctrl-v e deu na mesma
[11] Comentário enviado por removido em 10/01/2006 - 12:49h
seguinte, o problema dos ^M eh q provavelmente os arquivos q vcs estejam abrindo foram criados no windows.
Há uma diferenca na maneira com q são tratados arquivos de texto no windows e Linux, assim:
- no windao: a cada fim de linha sao colocados dois caracteres: '\n' e '\r'(newline e carriage return);
- no Linux: a cada fim de linha eh colocado somente o \n;
Então, abrindo um arquivo qqer do windows no Linux, o vim vai detectar um caacter não esperado(\r) q ele chama como ^M.
Experimentem usar as funcoeszz(http://aurelio.net/zz/), lah tem uma funcao chamada zzdos2linux q converte de win pra linux.
Eh isso.