Created
January 23, 2009 14:47
-
-
Save voyeg3r/51031 to your computer and use it in GitHub Desktop.
vimrc for windows
This file contains 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
" Arquivo de configuração do vim"{{{ | |
" Criado: Qua 02/Ago/2006 hs 09:19 | |
" Last Change: 23-01-2009 08:32:53 | |
" Autor: Sergio Luiz Araujo Silva | |
" Codificação: utf-8 | |
" Download: http://dotfiles.org/~voyeg3r/.vimrc | |
" Licence: Licença: Este arquivo é de domínio público | |
" Garantia: O autor não se responsabiliza por eventuais danos | |
" causados pelo uso deste arquivo. | |
" ( O O ) | |
" +===========oOO==(_)==OOo==============+ | |
" | | | |
" | °v° Sergio Luiz Araujo Silva | | |
" | /(_)\ Linux User #423493 | | |
" | ^ ^ voyeg3r gmail.com | | |
" +======================================+ | |
" | |
" Referências: | |
" * http://aurelio.net/vim/vimrc-ivan.txt | |
" | |
" :set runtimepath=~/vimruntime,/mygroup/vim,$VIMRUNTIME | |
" :echo g:colors_name"}}} | |
" | |
" para chamar o calendario \cal | |
" para ocultar marcas \mt | |
" plugin showmarks | |
" Default keymappings are: | |
" <Leader>mt - Toggles ShowMarks on and off. | |
" <Leader>mo - Turns ShowMarks on, and displays marks. | |
" <Leader>mh - Clears a mark. | |
" <Leader>ma - Clears all marks. | |
" <Leader>mm - Places the next available mark. | |
" spell | |
"]s ............. vai para a próxima palavra | |
"zg ............. adiciona palavra | |
"zw ............. retira palavra | |
"z= ............. sugestões | |
"zug ........... contrario de zu | |
"zuw ........... contrario de zw | |
"set sps=10 .... numero de sugestões do spell | |
" | |
set expandtab "troca tabs por espaços | |
" destaca como erro tabulações no começo de linha | |
au! VimEnter * match ErrorMsg /^\t\+/ | |
" =========== latex ================== | |
" REQUIRED. This makes vim invoke Latex-Suite when you open a tex file. | |
filetype plugin on | |
" IMPORTANT: win32 users will need to have 'shellslash' set so that latex | |
" can be called correctly. | |
set shellslash | |
" IMPORTANT: grep will sometimes skip displaying the file name if you | |
" search in a singe file. This will confuse Latex-Suite. Set your grep | |
" program to always generate a file-name. | |
set grepprg=grep\ -nH\ $* | |
" OPTIONAL: This enables automatic indentation as you type. | |
filetype indent on | |
" OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to | |
" 'plaintex' instead of 'tex', which results in vim-latex not being loaded. | |
" The following changes the default filetype back to 'tex': | |
let g:tex_flavor='latex' | |
" ============= fim latex ============== | |
" menu para o plugin | |
" ============================================== | |
amenu Plugin.marks.showride <esc><leader>mt<cr> | |
amenu Plugin.marks.clearThisMark <esc><leader>mh<cr> | |
amenu Plugin.marks.clearAll <esc><leader>ma<cr> | |
amenu Plugin.marks.NextMark <esc><leader>mm<cr> | |
" ============================================== | |
" cores | |
" ============================================== | |
menu T&emas.cores.quagmire :colo quagmire<CR> | |
menu T&emas.cores.inkpot :colo inkpot<CR> | |
menu T&emas.cores.google :colo google<CR> | |
menu T&emas.cores.ir_black :colo ir_black<CR> | |
menu T&emas.cores.molokai :colo molokai<CR> | |
menu T&emas.cores.wombat :colo wombat<CR> | |
" Fontes | |
menu T&emas.fonte.Inconsolata :set gfn=Inconsolata:h10<CR> | |
menu T&emas.fonte.Anonymous :set anti gfn=Anonymous:h8<CR> | |
menu T&emas.fonte.Envy\ Code :set anti gfn=Envy_Code_R:h10<CR> | |
menu T&emas.fonte.Monaco :set gfn=monaco:h9<CR> | |
menu T&emas.fonte.Crisp :set anti gfn=Crisp:h12<CR> | |
menu T&emas.fonte.Liberation\ Mono :set gfn=Liberation\ Mono:h10<CR> | |
" ============================================== | |
set foldlevel=2 | |
set vb t_vb= | |
set list | |
set listchars=tab:\|\ ,extends:>,precedes:<,trail:-,nbsp:% | |
nmap <silent> <leader>s :set nolist!<CR> | |
set fileformat=dos | |
"set enc=iso-8859-1 | |
set enc=utf8 | |
" registro de alterações de arquivo"{{{ | |
" ChangeLog entry convenience | |
" Função para inserir um status do arquivo | |
" cirado: data de criação, alteração, autor etc | |
fun! InsertChangeLog() | |
normal(1G) | |
call append(0, "Arquivo: <+nome do arquivo+> ") | |
call append(1, "Criado: " . strftime("%a %d/%b/%Y hs %H:%M")) | |
call append(2, "Last Change: " . strftime("%a %d/%b/%Y hs %H:%M")) | |
call append(3, "autor: <+digite seu nome+>") | |
normal gg | |
endfun | |
nmap <c-m-c> :call InsertChangeLog()<cr> | |
nmap ,cl :call InsertChangeLog | |
nmap <c-s-c> :call LastChange()<cr>"}}} | |
" Cria um cabeçalho para scripts bash"{{{ | |
fun! InsertHeadBash() | |
normal(1G) | |
call append(0, "#!/bin/bash") | |
call append(1, "# Criado em:" . strftime("%a %d/%b/%Y hs %H:%M")) | |
call append(2, "# Last Change: " . strftime("%a %d/%b/%Y hs %H:%M")) | |
call append(3, "# Instituicao: <+nome+>") | |
call append(4, "# Proposito do script: <+descreva+>") | |
call append(5, "# Autor: <+seuNome+>") | |
call append(6, "# site: <+seuSite+>") | |
normal gg | |
endfun | |
map ,sh :call InsertHeadBash()<cr>A | |
au BufNewFile,BufRead *.sh if getline(1) == "" | normal ,sh"}}} | |
" função para inserir cabeçalhos python | |
fun! BufNewFile_PY() | |
normal(1G) | |
:set ft=python | |
:set ts=2 | |
call append(0, "#!/usr/bin/env python") | |
call append(1, "# # -*- coding: ISO-8859-1 -*-") | |
call append(2, "# Criado em:" . strftime("%a %d/%b/%Y hs %H:%M")) | |
call append(3, "# Last Change: " . strftime("%a %d/%b/%Y hs %H:%M")) | |
call append(4, "# Instituicao: <+nome+>") | |
call append(5, "# Proposito do script: <+descreva+>") | |
call append(6, "# Autor: <+seuNome+>") | |
call append(7, "# site: <+seuSite+>") | |
normal gg | |
endfun | |
autocmd BufNewFile *.py call BufNewFile_PY() | |
map ,py :call BufNewFile_PY()<cr>A | |
"-----------------------------------------------------"{{{ | |
" dá permissão para arquivos dos tipos descritos abaixo | |
" Automatically give executable permissions if filename ends in .sh, .pl or .cgi | |
"au BufWritePost *.sh !chmod +x % | |
"----------------------------------------------------- | |
" Automatically give executable permission to scripts starting | |
" with #!/usr/bin/perl and #!/bin/sh | |
"au BufNewFile,BufWritePost * if getline(1) =~ "^#!/bin/[a-z]*sh" || | |
" \ getline(1) =~ "^#!/usr/bin/env python" | silent execute "!chmod u+x %" | endif"}}}"}}} | |
map <F2> <esc>:NERDTreeToggle<cr>"{{{ | |
" atalho para o gerenciador de janelas | |
" Abrir com explorer em nova janela | |
"let g:netrw_altv = 1 | |
"map <F2> <esc>:vne .<cr><bar>:vertical resize -40<cr><bar>:set nonu<cr>"}}} | |
" se o sistema é um unix setar o terminal para bash "{{{ | |
if has("unix") | |
let &shell="bash" | |
set clipboard=autoselect | |
" Let's be friendly :) | |
"autocmd VimEnter * echo "Seja bem vindo ao vim. Seu sistema é Linux!" | |
"else | |
"autocmd VimEnter * echo "Seja bem vindo ao vim. Seu sistema é Windows!" | |
endif | |
au BufNewFile,BufRead *.txt source ~/vimfiles/syntax/txt.vim | |
"}}} | |
" testa se há modo gráfico "{{{ | |
if &t_Co > 2 || has("gui_running") | |
syntax on | |
set hlsearch | |
colorscheme quagmire | |
hi LineNr guifg=pink ctermfg=lightMagenta | |
"hi LineNr guifg=green ctermfg=lightGreen | |
endif "}}} | |
" esquema de cores "{{{ | |
colorscheme molokai"}}} | |
" alternar entre esquemas de cores - colorscheme"{{{ | |
" http://nanasi.jp/old/colorscheme_0.html <-- baixe os esquemas aqui | |
function! <SID>SwitchColorSchemes() | |
if exists("g:colors_name") | |
if g:colors_name == 'inkpot' | |
colorscheme colorful | |
elseif g:colors_name == 'colorful' | |
colorscheme zenburn | |
elseif g:colors_name == 'zenburn' | |
colorscheme python | |
elseif g:colors_name == 'python' | |
colorscheme softblue | |
elseif g:colors_name == 'softblue' | |
colorscheme neverness | |
elseif g:colors_name == 'neverness' | |
colorscheme summerfruit | |
elseif g:colors_name == 'summerfruit' | |
colorscheme desert | |
elseif g:colors_name == 'desert' | |
colorscheme eclm_wombat | |
elseif g:colors_name == 'eclm_wombat' | |
colorscheme native | |
elseif g:colors_name == 'native' | |
colorscheme maroloccio2 | |
elseif g:colors_name == 'maroloccio2' | |
colorscheme digerati | |
elseif g:colors_name == 'digerati' | |
colorscheme voyeg3r | |
elseif g:colors_name == 'voyeg3r' | |
colorscheme vitamins | |
elseif g:colors_name == 'vitamins' | |
colorscheme molokai | |
elseif g:colors_name == 'molokai' | |
colorscheme quagmire | |
elseif g:colors_name == 'quagmire' | |
colorscheme inkpot | |
endif | |
endif | |
endfunction | |
"map <silent> <F6> :call <SID>SwitchColorSchemes()<CR> <BAR> :echo g:colors_name<cr> | |
map <silent> <F6> <esc>:call <SID>SwitchColorSchemes()<CR><bar>:echo g:colors_name<cr>"}}} | |
" setings"{{{ | |
" By default, go for an indent of 4 | |
"set anti gfn=Envy_Code_R:h10 | |
"set anti gfn=monaco:h9 | |
"set anti gfn=Crisp:h12 | |
set anti gfn=Monaco:h9 | |
set autowrite " salvamento automático | |
set shiftwidth=4 | |
set softtabstop=4 | |
set ts=3 " Paradas de tabulação com 3 espaços | |
set tabstop=3 | |
set expandtab | |
set viminfo=%,'50,\"100,/100,:100,n | |
set undolevels=1000 " undoing 1000 changes should be enough :-) | |
set updatecount=100 " write swap file to disk after each 20 characters | |
set updatetime=6000 " write swap file to disk after 6 inactive seconds | |
set noerrorbells " don't make noise | |
set incsearch " habilita busca incremental | |
set nocompatible | |
set ignorecase | |
set smartcase "Se começar uma busca em maiúsculo ele habilita o case | |
set noerrorbells | |
set visualbell | |
set nu ai sm js | |
set showcmd showmode showmatch | |
set ruler | |
set hls | |
set nobackup | |
set writebackup | |
set backupext=.backup | |
set backupdir=~/.backup,~/tmp,.,/tmp"}}} | |
"destacar palavra sob o cursor no documento inteiro"{{{ | |
"nmap <s-f> :let @/="<C-r><C-w>"<CR> | |
" Uppercase first letter of sentences | |
":%s/[.!?]\_s\+\a/\U&\E/g | |
""}}} | |
" Define o número de linhas deslocadas com os comandos"{{{ | |
" ^U (Ctrl+U) e ^D (Ctrl+D) | |
setlocal scroll=2"}}} | |
" syntax para endereços ip"{{{ | |
syn match ipaddr /\(\(25\_[0-5]\|2\_[0-4]\_[0-9]\|\_[01]\?\_[0-9]\_[0-9]\?\)\.\)\{3\}\(25\_[0-5]\|2\_[0-4]\_[0-9]\|\_[01]\?\_[0-9]\_[0-9]\?\)/ | |
hi link ipaddr Identifier | |
" fim da função"}}} | |
" mapeamento para o wikispaces | |
imap <F4> [[code format=""]]<enter><+conteudo+><enter>[[code]]<esc><right>D<esc>kkf"a | |
map <F4> i[[code format=""]]<enter><+conteudo+><enter>[[code]]<esc><right>D<esc>kkf"a | |
" para remover linhas em branco duplicadas"{{{ | |
map ,d <esc>my:%s/\(^\n\{2,}\)/\r/g<cr>`y | |
""}}} | |
" oculta o destaque das buscas, e exibe de novo com shift+F11"{{{ | |
" tira as cores das ocorrências de busca e recoloca (booleano) | |
"nno <S-F11> :set hls!<bar>set hls?<CR> | |
nno <S-F11> <esc>:set invhls<cr> | |
""}}} | |
function! DiffWithFileFromDisk() " "{{{ | |
let filename=expand('%') | |
let diffname = filename.'.fileFromBuffer' | |
exec 'saveas! '.diffname | |
diffthis | |
vsplit | |
exec 'edit '.filename | |
diffthis | |
endfunction | |
" :call DiffWithFileFromDisk() }}}" | |
" Remove Ctrl+M do final de linhas do DOS windows"{{{ | |
" get rid of | |
" Para inserir o simbolo | |
use ^v ^M ou ^v Enter | |
if has("user_commands") | |
" remove | |
from the file | |
com! RemoveCtrlM :%s/\%x0d/\r/g | |
" change to directory of current file | |
com! CD cd %:p:h | |
endif | |
" o mapeamento abaixo associa 'leader - no meu caso \ '+m para | |
" remover finais de linha MS-DOS | |
noremap <Leader>m mmHmt:%s/<C-V><cr>//ge<cr>'tzt'm | |
" no caso do sed faça: | |
"sed -i 's/\x0D$//' * | |
" | |
" Para apagar caracteres de final de linha do DOS manualmente faça: | |
":%s/\%x0d//g"}}} | |
" plugin potwiki"{{{ | |
" leia: http://sergioaraujo.pbwiki.com/potwiki | |
let potwiki_home = "~/wiki/HomePage" | |
let potwiki_suffix =".txt" | |
au Filetype potwiki set sts=4 | |
highlight PotwikiWord guifg=darkcyan | |
highlight PotwikiWordNotFound guibg=Red guifg=Yellow"}}} | |
" função para exibir conteúdo de folders e sugestões do spell"{{{ | |
set spell spelllang=pt | |
function! FoldSpellBalloon() | |
let foldStart = foldclosed(v:beval_lnum ) | |
let foldEnd = foldclosedend(v:beval_lnum) | |
let lines = [] | |
" Detec if we are in a fold | |
if foldStart < 0 | |
" Detect if we are on a misspelled word | |
let lines = spellsuggest(spellbadword(v:beval_text)[0],10,0) | |
else | |
" we are in a fold | |
let numLines = foldEnd - foldStart + 1 | |
" if we have too many lines in fold, show, only the first 14 | |
" and the last 14 lines | |
if ( numLines > 31 ) | |
let lines = getline(foldStart, foldStart + 14 ) | |
let lines += [ '--Snipped ' . (numLines - 30 ) . 'lines --' ] | |
let lines += getline(foldEnd - 14, foldEnd ) | |
else | |
"less than 30 lines, lets show all of them | |
let lines = getline(foldStart, foldEnd) | |
endif | |
endif | |
" return result | |
return join(lines, has( "balloon_multiline" ) ? "\n" : " " ) | |
endfunction | |
set balloonexpr=FoldSpellBalloon() | |
set ballooneval"}}} | |
" para ativar snippets"{{{ | |
filetype on | |
filetype plugin on | |
" na compilação dos snippets menu pelo vimball | |
" defina o novo atalho para snippets | |
"let snippetsEmy_key = "<C-Space>" | |
" atalhos da linha de comando | |
" ^u ....... apaga para esquerda | |
" ^w ....... apaga a palavra antes do cursor | |
" ^b ....... begin of line | |
" ^e ....... end of line | |
" ^c ....... sai da linha de comando sem executar | |
" ^d ....... completa o comando | |
" :history / 6,12 | |
" q: ....... abre uma janela com o histórico de comandos | |
" q/ ........abre uma janela com o histórico de buscas | |
"nnoremap <c-j> /<+.\{-1,}+><cr>c/+>/e<cr> | |
"inoremap <c-j> <esc>/<+.\{-1,}+><cr>c/+>/e<cr> | |
"match Todo /<+.\++>/ | |
"iabbrev <buffer> for( for (x=0;x<var;x++){<cr><cr>} | |
" place holders snippets | |
" File Templates | |
" -------------- | |
" ^J jumps to the next marker | |
" iabbr <buffer> for for <+i+> in <+intervalo+>:<cr><tab><+i+> | |
function! LoadFileTemplate() | |
"silent! 0r ~/.vim/templates/%:e.tmpl | |
syn match vimTemplateMarker "<+.\++>" containedin=ALL | |
hi vimTemplateMarker guifg=#67a42c guibg=#112300 gui=bold | |
endfunction | |
function! JumpToNextPlaceholder() | |
let old_query = getreg('/') | |
echo search("<+.\\++>") | |
exec "norm! c/+>/e\<CR>" | |
call setreg('/', old_query) | |
endfunction | |
autocmd BufNewFile * :call LoadFileTemplate() | |
nnoremap <C-J> :call JumpToNextPlaceholder()<CR>a | |
inoremap <C-J> <ESC>:call JumpToNextPlaceholder()<CR>a | |
""}}} | |
" Endereço do arquivo de syntax"{{{ | |
" http://aurelio.net/doc/vim/txt.vim coloque em ~/.vim/syntax | |
"au BufNewFile,BufRead *.txt source ~/.vim/syntax/txt.vim"}}} | |
" Complementação de códigos "{{{ | |
" Quando estiver digitando lembre-se que os atalhos | |
" abaixo habilitam a complementação de: | |
" | |
" CTRL-X CTRL-F file names | |
" CTRL-X CTRL-L whole lines | |
" CTRL-X CTRL-D macro definitions (also in included files) | |
" CTRL-X CTRL-I current and included files | |
" CTRL-X CTRL-K words from a dictionary | |
" CTRL-X CTRL-T words from a thesaurus | |
" CTRL-X CTRL-] tags | |
" CTRL-X CTRL-V Vim command line | |
" CTRL-X CTRL-O códigos | |
" ======================================================== | |
"Inserindo a ultima busca, comando ou nome do arquivo no texto "<c-r>/ | |
"Para inserir o nome do arquivo faça: "<c-r>% | |
"Para inserir o último comando no texto: "<c-r>: | |
"Para repetir exatamente a última inserção "<c-a> | |
"Para complementar a inseração de linhas "<c-x><c-l> | |
"Para complementar com palavras "<c-x><c-p> | |
"Para complementar à partir do dicionário "<c-x><c-k> | |
"Para repetir linha acima caractere por caracte "<c-y> | |
"Para repetir linha abaixo caractere por caractere "<c-e> | |
" complementação usando arquivos de syntax do sistema | |
"au FileType * exe('setl dict+='.$VIMRUNTIME.'/syntax/'.&filetype.'.vim') | |
" ================================================="}}} | |
" dicas e atalhos {{{ | |
" | |
" Dobras | |
" zf ................ operador para criar folders | |
" zfis .............. cria um folder da sentença atual | |
" zd ................ delete folder | |
" zo ................ abrir dobra sob o cursor | |
" zc ................ fechar dobra sob o cursor | |
" zv ................ visualizar linha sob o cursor | |
" zR ................ abre todos os folders | |
" | |
" ^wo ....... fecha outras janelas | |
" para saber o local dos arquivos de configuração do vim | |
" :echo $VIMRUNTIME | |
"Inserindo um registrador em modo normal | |
"Para criar um registrador em modo normal faça: | |
" "ayy ........... copia a linha atual para o registrador a | |
""ayiw .......... copia a palavra atual para o registrador a | |
"em modo insert faça: | |
" Control + r + a | |
" | |
" Folding configuration ======== | |
" Método de folders | |
" set foldmethod=marker | |
"set foldlevel=0 | |
"map + v%zf | |
"set fmr={{{,}}} | |
" mapeamentos para indentar com Alt+l -->"{{{ | |
"map <m-h> << | |
"map <m-l> >> | |
" ^t indenta em modo insert | |
" ^d retira indentação em modo insert"}}} | |
" This is for vertical indenting | |
" NOTE the space char after last backslash. | |
" insere o nome do arquivo | |
" "%p no modo normal | |
" <C-R>% no modo insert | |
" zM ...... fecha todos os folders abertos | |
" precarregando registros | |
" para repetir um comando faça: @: | |
let @s=":%sort u" | |
" Endereço do wiki (potwiki) | |
" http://www.vim.org/scripts/script.php?script_id=1018 | |
" | |
" Setando o vim como editor padrão | |
" | |
" Coloque estas linhas no seu .bashrc, oviamente sem as aspas | |
" do início | |
" | |
" export EDITOR=vim | |
" export VISUAL=vim | |
" Obs: se obtiver erro cole antes no gedit, pois você pode estar tendo erro na | |
" codificação utf-8 iso-8859-15 | |
" | |
" Linhas comentadas são iniciadas por (") aspas duplas personalização para o | |
" " xterm -ls -bg black -fg white -fa 'bistream vera sans mono' -fs 10 -cr white -hc white -rightbar | |
" white -hc white -rightbar | |
" para copiar todo o arquivo ggvG "+y | |
" para colar todo o arquivo "+p | |
" para abrir o arquivo anterior '0 | |
" | |
" numerar linhas | |
":let i=1 | g/^/s//\=i."\t"/ | let i=i+1 | |
map ,n <esc>:let i=1 <bar> g/^/s//\=i."\t"/ <bar> let i=i+1<cr> | |
" inserindo um dígito | |
" i control+v numero | |
" atribuindo um registro | |
" :reg .......... exibe o conteúdo de todos os registros | |
" let @a="%s/casa/residência/g" | |
" :@a | |
" & ............... repete a última substituição na linha atual | |
" @: .............. repete o último comando | |
" gv .............. repete seleção visual | |
" :%g!/^\t\+/ . w! >> ~/tmp/relatorio.txt | |
" :[x,y]v/<string>/<cmd> ........ Executa <cmd> nas linhas em que não houver <string> | |
" :his c ....... histórico de comandos | |
" :<C-F> .......... abre o histórico (escolha e dê enter) | |
" q/ ............... histórico de buscas | |
" q: ............... histórico de comandos | |
" Control-w-q ...... fecha janela de um arquivo salvo | |
" :<C-R>m .......... insere o registro "m" no comando | |
" :<C-R><C-W> ....... insere a palavra atual no comando | |
" ://................ insere a última busca | |
" :%s//aquilo/g | |
" :bufdo exe "normal @q" | w : perform a recording on open files | |
" :%s/^\n\+/\r/ ........ remove linhas em branco excessivas | |
" :Ex ................. abre o explorer | |
" ]s .................... vai para o próximo erro do Spell | |
" zg .................... adiciona a palavra ao dicionário | |
" zug ................... remove a palavra do dicionário | |
" na ajuda Control-] segue um link e Control-t volta | |
" K ........ abre o manual referente à palavra sob o cursor | |
" control-o ............. retrocede na lista de saltos | |
" control-i ............. avança na lista de saltos | |
" :%s/\(^\n\{2,}\)/\r/g :para remover linhas em branco duplicadas | |
" :nmap <F3> :let @/=""<CR> :limpara o registro de buscas | |
" :let @/="<C-r><C-w>"<CR> :mostra a palavra sob o cursor destacada | |
" para mostrar o valor hexa e decimal de um caracter use 'ga' | |
" para apagar um caractere :%s/\%x0d//g | |
" Referências: | |
" http://aurelio.net/doc/vim/vimrc-ivan.txt | |
" http://aurelio.net/doc/vim/ | |
" http://rayninfo.co.uk/vimtips.html"}}} | |
"paste interfere na indentação em modo insert"{{{ | |
nnoremap <F3> :set invpaste paste?<cr> | |
"imap <F3> <C-O><F3><cr><cr> | |
imap <F3> <esc>:set invpaste paste?<cr>a<cr> | |
set pastetoggle=<F3>"}}} | |
" complementação de palavras "{{{ | |
"usa o tab em modo insert para completar palavras | |
function! InsertTabWrapper(direction) | |
let col = col('.') - 1 | |
if !col || getline('.')[col - 1] !~ '\k' | |
return "\<tab>" | |
elseif "backward" == a:direction | |
return "\<c-p>" | |
else | |
return "\<c-n>" | |
endif | |
endfunction | |
"Fechamento automático de parênteses, chaves e colchetes | |
imap { {}<left> | |
imap ( ()<left> | |
imap [ []<left> | |
imap <c-m><right> <esc>A <esc>A | |
"Para ir para a próxima linha usando l ou h | |
set whichwrap=h,l,~,[,] | |
"Para destacar o fechamento de tags html | |
set matchpairs+=<:> | |
filetype plugin indent on | |
set dictionary+=/home/sergio/docs/conf/dict/.words.txt | |
"set complete=.,w,k | |
"set complete=.,t,w,k,],b | |
set infercase | |
" make all windows the same size when adding/removing windows | |
set noequalalways | |
" mostra opções para comandos | |
set wildmenu | |
set wildmode=list:longest,full | |
inoremap <tab> <c-r>=InsertTabWrapper ("forward")<cr> | |
inoremap <s-tab> <c-r>=InsertTabWrapper ("backward")<cr> | |
" mapeamentos para complementação | |
" não modifique estes caracteres se usa utf-8 | |
" ^X^F .............. completa com nomes de arquivo | |
" ^X^D .............. definições ou macros | |
" ^X^L .............. linhas inteiras | |
" ^X^K .............. completa palavras do dicionário | |
" ^X^O .............. completa código | |
"inoremap | |
"inoremap | |
"inoremap | |
"inoremap | |
"inoremap | |
"Word completion"{{{ | |
"Complementação de palavras | |
" setting for completion | |
"if v:version >= 700 | |
" set completeopt+=longest | |
" set completeopt=longest,menuone | |
" set spell spelllang=pt | |
" map <silent> <C-M-i> :setlocal invspell<CR> | |
" imap <silent> <C-M-i> <ESC>:setlocal invspell<CR>i | |
"endif | |
" ================================================================ | |
" Quando completar uma palavra seguir a seguinte seqüencia de | |
" busca, sendo primeiro em 1, segundo em 2, ... | |
" | |
" * 1 - no buffer atual (.) | |
" * 2 - buffer de outra janela (w) | |
" * 3 - outros buffers carregados (b) | |
" * 4 - buffers não carregados (u) | |
" * 5 - arquivo de tags (t) | |
" * 6 - arquivo de include (i) | |
" * 7 - dicionário (K) | |
" | |
" complete=.,w,b,u,t,i,k (*default*) | |
" ================================================================ | |
" para adicionar o verificador ortográfico siga esta dica: | |
" http://plasticossj4.wordpress.com/2006/09/29/corretor-ortografico-do-vim-7-no-ubuntu-606/ | |
" http://www.broffice.org/?q=verortografico (link citado no artigo acima) | |
" Este é meu primeiro post Geek, já que foi lançado recentemente a versão 7 | |
" do editor vim resolvi escrever um Mini_HOWTO de como adicionar o corretor | |
" ortografico em português para este Maravilhoso editor de texto no Ubuntu | |
" 6.06. | |
" Primeiro é preciso baixar o arquivo de dicionário; (link acima) | |
" Descompacte o arquivo; | |
" Despois abra o Vim e digite :mkspell pt pt_BR ; | |
" Vai ser gerado no home corrente um arquivo de nome pt.utf-8.spl; | |
" Como root digite: | |
" cp pt.utf-8.spl /usr/share/vim/vim70/spell/; | |
" Ainda como root edite o arquivo vimrc situado no diretório /usr/share/vim/ e acrescente esta linha no final do arquivo: | |
" set spell spelllang=pt “Corretor ortografico em portugues; | |
setlocal complete=.,w,k,b,u,t,i | |
set complete-=k complete+=k | |
"o comando acima ativa o formato i_Ctrl_n_Ctrl_n para ativar o dicionário"}}} | |
"}}} | |
" veriricação ortográfica "{{{ | |
set nospell " usando <c-i> ativa spell | |
map <s-F7> <esc>:set spell!<cr> | |
" ]s ..... busca o próximo erro | |
" zg ..... adiciona palavra ao dicionário 'good' | |
" zug .... desfaz adição de palavra no dicionário | |
" zw ..... marca palavra como errada | |
" z= ..... mostra alternativas de correção | |
"After adding a word to 'spellfile' with the above commands its associated | |
"".spl" file will automatically be updated and reloaded. If you change | |
"'spellfile' manually you need to use the |:mkspell| command. This sequence of | |
"commands mostly works well: > | |
" :edit <file in 'spellfile'> | |
"< (make changes to the spell file) > | |
" :mkspell! %"}}} | |
" status bar format "{{{ | |
" O trecho abaixo formata a barra de status com algumas opções interessantes! | |
" mostra o código ascii do caractere sob o cursor e outras coisas mais | |
set statusline=%<%F%h%m%r%h%w%y\ ft:%{&ft}\ ff:%{&ff}\ Modificado:\ %{strftime(\"%a\ %d/%B/%Y\ %H:%M:%S\",getftime(expand(\"%:p\")))}%=\ lin:%04l\ \total:%04L\ hex:%03.3B\ ascii:%03.3b\ %P | |
set laststatus=2 " Sempre exibe a barra de status | |
" "}}} | |
" mapeamentos "{{{ | |
" make search results appear in the middle of the screen | |
" faz os resultados da busca aparecerem no meio da tela | |
nmap n nzz | |
nmap N Nzz | |
nmap * *zz | |
nmap # #zz | |
nmap g* g*zz | |
nmap g# g#zz"}}} | |
" recarregar o vimrc"{{{ | |
" Source the .vimrc or _vimrc file, depending on system | |
if &term == "win32" || "pcterm" || has("gui_win32") | |
map ,v :e $HOME/_vimrc<CR> | |
nmap <F12> :<C-u>source ~/_vimrc <BAR> echo "Vimrc recarregado!"<CR> | |
else | |
map ,v :e $HOME/.vimrc<CR> | |
nmap <F12> :<C-u>source ~/.vimrc <BAR> echo "Vimrc recarregado!"<CR> | |
endif"}}} | |
" Destaca espaços e tabs redundantes "{{{ | |
" caso queira usar descomente as ultimas linha e reinicie o | |
" vim ou pressione ,u caso etnha a função de recarregar (veja linha17) | |
" Highlight redundant whitespace and tabs. | |
highlight RedundantWhitespace ctermbg=red guibg=red | |
match RedundantWhitespace /\s\+$\| \+\ze\t/ | |
"remove espaços redundantes no fim das linhas | |
map <F7> <esc>mz:%s/\s\+$//g<cr>`z"}}} | |
" data automática "{{{ | |
" insira na em seus arquivos = "ultima modificação:" | |
" em qualquer das três primeiras linhas | |
fun! LastChange() | |
mark z | |
if getline(1) =~ ".*Last Change:" || | |
\ getline(2) =~ ".*Last Change:" || | |
\ getline(3) =~ ".*Last Change:" || | |
\ getline(4) =~ ".*Last Change:" || | |
\ getline(5) =~ ".*Last Change:" | |
exec "1,5s/\s*Last Change: .*$/Last Change: " . strftime("%d-%m-%Y %H:%M:%S") . "/" | |
endif | |
exec "'z" | |
endfun | |
" salva com <F9> | não altera o time stamp | |
" salvar sem alterar o time stamp preserva a lista de saltos | |
nmap <F9> <esc>:w<cr> | |
imap <F9> <C-O><C-S> | |
" salva com <F5> e altera o time stamp chamando a função | |
" LastChange() definina acima | |
map <F5> <esc>:call LastChange() <BAR> w<cr> | |
" abre o histórico de comandos | |
map <S-F5> q: | |
"ao salvar modificar o change log no começo do arquivo | |
cab wq call LastChange() <BAR> wq<cr> | |
" desabilitei o uso altomático pois influia na lista de modificações e saltos | |
" deixando a alteração do time stamp para ser feita manualmente com o comando | |
" map <F5> <esc>:call LastChange() <BAR> w<cr> | |
"au BufWritePre * call SetDate() | |
au BufWritePre * call LastChange() | |
"============ Fim da Data Automática ==================="}}} | |
" Abreviações "{{{ | |
" | |
" Estas linhas sao para não dar erro | |
" na hora de salvar arquivos | |
cab W w | |
cab Wq wq | |
cab wQ wq | |
cab WQ wq | |
cab Q q | |
"iab tambem também | |
"iab teh the | |
"iab them then | |
"iab latex \LaTeX\ | |
"iab ,m <[email protected]> | |
iab slas Sérgio Luiz Araújo Silva | |
"ab vc você | |
"iab teh the | |
"iab a. ª | |
"iab analize análise | |
"iab angulo ângulo | |
"iab apos após | |
"iab apra para | |
"iab aqeule aquele | |
"iab aqiulo aquilo | |
"iab arcoíris arco-íris | |
"iab aré até | |
"iab asim assim | |
"iab aspeto aspecto | |
"iab assenção ascenção | |
"iab assin assim | |
"iab assougue açougue | |
"iab aue que | |
"iab augum algum | |
"iab augun algum | |
"iab ben bem | |
"iab beringela berinjela | |
"iab bon bom | |
"iab cafe café | |
"iab caichote caixote | |
"iab capitões capitães | |
"iab cidadães cidadãos | |
"iab ckaro claro | |
"iab cliche clichê | |
"iab compreenssão compreensão | |
"iab comprensão compreensão | |
"iab comun comum | |
"iab con com | |
"iab contezto contexto | |
"iab corrijir corrigir | |
"iab coxixar cochichar | |
"iab cpm com | |
"iab cppara para | |
"iab dai daí | |
"iab danca dança | |
"iab decer descer | |
"iab definitamente definitivamente | |
"iab deshonestidade desonestidade | |
"iab deshonesto desonesto | |
"iab detale detalhe | |
"iab deven devem | |
"iab díficil difícil | |
"iab distingeu distingue | |
"iab dsa das | |
"iab dze dez | |
"iab ecessão exceção | |
"iab ecessões exceções | |
"iab eentão e então | |
"iab emb bem | |
"iab ems sem | |
"iab emu meu | |
"iab en em | |
"iab enbora embora | |
"iab equ que | |
"iab ero erro | |
"iab erv ver | |
"iab ese esse | |
"iab esselência excelência | |
"iab esu seu | |
"iab excessão exceção | |
"iab Excesões exceções | |
"iab excurção excursão | |
"iab Exenplo exemplo | |
"iab exeplo exemplo | |
"iab exijência exigência | |
"iab exijir exigir | |
"iab expontâneo espontâneo | |
"iab ezemplo exemplo | |
"iab ezercício exercício | |
"iab faciu fácil | |
"iab fas faz | |
"iab fente gente | |
"iab ferias férias | |
"iab geito jeito | |
"iab gibóia jibóia | |
"iab gipe jipe | |
"iab ha há | |
"iab hezitação hesitação | |
"iab hezitar hesitar | |
"iab http:\\ http: | |
"iab iigor igor | |
"iab interesado interessado | |
"iab interese interesse | |
"iab Irria Iria | |
"iab iso isso | |
"iab isot isto | |
"iab ítens itens | |
"iab ja já | |
"iab jente gente | |
"iab linguiça lingüiça | |
"iab linux GNU/Linux | |
"iab masi mais | |
"iab maz mas | |
"iab con com | |
"iab mema mesma | |
"iab mes mês | |
"iab muinto muito | |
"iab nao não | |
"iab nehum nenhum | |
"iab nenina menina | |
"iab noã não | |
"iab no. nº | |
"iab N. Nº | |
"iab o. º | |
"iab obiter obter | |
"iab observacao observação | |
"iab ons nos | |
"iab orijem origem | |
"iab ospital hospital | |
"iab poden podem | |
"iab portugu6es português | |
"iab potuguês português | |
"iab precisan precisam | |
"iab própio próprio | |
"iab quado quando | |
"iab quiz quis | |
"iab recizão rescisão | |
"iab sanque sangue | |
"iab sao são | |
"iab sen sem | |
"iab sensivel sensível | |
"iab sequéncia seqüência | |
"iab significatimente significativam | |
"iab sinceranete sinceramente | |
"iab sovre sobre | |
"iab susseder suceder | |
"iab tanbem também | |
"iab testo texto | |
"iab téxtil têxtil | |
"iab tydo tudo | |
"iab una uma | |
"iab unico único | |
"iab utilise utilize | |
"iab vega veja | |
"iab vivaotux http://vivaotux.blogspot.com | |
"iab vt http://vivaotux.blogspot.com | |
"iab vja veja | |
"iab voc6e você | |
"iab wue que | |
"iab xave chave | |
iab 1a. 1ª | |
iab 2a. 2ª | |
iab 3a. 3ª | |
iab 4a. 4ª | |
iab 5a. 5ª | |
iab 6a. 6ª | |
iab 7a. 7ª | |
iab 8a. 8ª | |
iab 9a. 9ª | |
iab 10a. 10ª | |
iab 11a. 11ª | |
iab 12a. 12ª | |
iab 13a. 13ª | |
iab 14a. 14ª | |
iab 15a. 15ª | |
" caso o teclado esteja desconfigurado use: | |
iab 'a á | |
iab 'A Á | |
iab 'e é | |
iab 'E É | |
iab 'i í | |
iab 'I Í | |
iab 'o ó | |
iab 'O Ó | |
iab ~a ã | |
iab ~A Ã | |
iab ^a â | |
iab ^A Â | |
iab `a à | |
iab `A À | |
iab ,c ç | |
iab ,C Ç | |
iab ^e ê | |
iab ^E Ê | |
iab ^o ô | |
iab ^O Ô | |
iab ~o õ | |
iab ~O Õ | |
iab 'u ú | |
iab 'U Ú"}}} | |
" o arquivo será aberto no ultimo ponto em que foi editado "{{{ | |
" When editing a file, always jump to the last known cursor position. | |
" Don't do it when the position is invalid or when inside an event handler | |
" (happens when dropping a file on gvim). | |
" change to directory of current file automatically | |
"autocmd BufEnter * lcd %:p:h | |
autocmd BufReadPost * | |
\ if line("'\"") > 0 && line("'\"") <= line("$") | | |
\ exe "normal g`\"" | | |
\ endif"}}} | |
" autocomandos para python "{{{ | |
autocmd BufRead *.py set cinwords=if,elif,else,for,while,try,except,finally,def,class | |
im :<CR> :<CR><TAB> | |
"}}} | |
autocmd FileType python set omnifunc=pythoncomplete#Complete | |
if has("autocmd") | |
autocmd FileType python set complete+=k/path/to/pydiction isk+=.,( | |
endif " has("autocmd") | |
" templates - modelos de arquivo"{{{ | |
"----------------------------------------------------- | |
" HTML: Funcoes particulares para editar arquivos HTML | |
" Cria um esqueleto de arquivo HTML ao abrir um arquivo novo .html | |
" Should stop HTML Files auto-indenting | |
"----------------------------------------------------- | |
augroup html | |
" au! <--> Remove all html autocommands | |
au! | |
au BufNewFile,BufRead *.html,*.shtml,*.htm set ft=html | |
"au BufNewFile,BufRead,BufEnter *.html,*.shtml,*.htm so ~/docs/vim/.vimrc-html | |
au BufNewFile *.html 0r ~/vimfiles/skel/skel.html | |
"au BufNewFile *.html*.shtml,*.htm /body/+ | |
au BufNewFile,BufRead *.html,*.shtml,*.htm set noautoindent nolist | |
augroup end | |
"----------------------------------------------------- | |
" | |
" arquivo de syntax do Aurélio Marinho Jargas | |
" au BufNewFile,BufRead *.txt source ~/docs/conf/vim/txt.vim | |
"----------------------------------------------------- | |
" Procure usar a função "InsertHeadBash()" com o mesmo propósito | |
" das linhas abaixo. A função citada insere um cabeçalho pronto | |
" com "change log". | |
" autocomandos para scripts | |
"augroup sh | |
" au! | |
" au BufNewFile *.sh 0r ~/docs/vim/skel.sh | |
" au BufNewFile,BufRead *.sh set ts=4 | |
"augroup end"}}} | |
" avança buffer :wn"{{{ | |
map <M-right> :wn<cr> | |
map <M-left> :wp<cr> | |
""}}} | |
" (window)Define o número de linhas deslocadas com os comandos"{{{ | |
" ^B (Ctrl+B) e ^F (Ctrl+F) | |
setlocal window=5 | |
""}}} | |
" fazer rolagem no documento"{{{ | |
" tem que estar em modo normal! | |
map <C-Down> <c-d> | |
map <C-Up> <c-u> | |
""}}} | |
" define a cor para o menu contextual dos complementos"{{{ | |
"hi Pmenu guifg=#ffffff guibg=#cb2f27 ctermbg=13 | |
highlight Pmenu guifg=#000000 guibg=Gray ctermbg=13 | |
highlight PmenuSel ctermbg=7 guibg=#ee5500 guifg=White | |
highlight PmenuSbar ctermbg=7 guibg=DarkGray | |
highlight PmenuThumb guibg=Black | |
""}}} | |
" MinusculasMaiusculas: converte a primeira letra de cada frase p/MAIUSCULAS"{{{ | |
map ,mm :set noic<cr> | |
\:%s/\(\(\([.!?]\s*\\|^\s*\)\n^\\|[.?!-] \)\s*"\?\s*\)\([a-zàáéóú]\)/\1\U\4/g<cr> | |
""}}} | |
" Coloca em maiúsculo a primeira letra de cada sentença"{{{ | |
map ,u :%s/\([.!?]\)\(\_s\+\)\(\a\)/\1\2\U\3/g<cr> | |
""}}} | |
" um destaque especial para MinhasNotas "{{{ | |
highlight MinhasNotas ctermbg=Yellow ctermfg=red guibg=Yellow guifg=red | |
match MinhasNotas /Nota:/ | |
""}}} | |
"Auto formatação para parágrafos "{{{ | |
map <F8> gqap | |
""}}} | |
" mapeamento para abrir e fechar folders em modo normal usando "{{{ | |
" a barra de espaços -- zR abre todos os folders | |
nnoremap <space> @=((foldclosed(line('.')) < 0) ? 'zc' : 'zo')<CR> | |
""}}} | |
" o mapeamento abaixo coloca e retira a numeração "{{{ | |
" o sistema alterna a numeração para ativa ou desativada | |
map <F11> <esc>:set invnu<cr> | |
map <S-F12> <esc>:dig<cr> " mostra os digrafos do tipo Word®"}}} | |
" for txt, autoformat and wrap text at 70 chars. "{{{ | |
autocmd BufNewFile,BufRead *.txt set wrapmargin=70 textwidth=70 | |
""}}} | |
" autocomando para arquivos html, xml e xsl para fechar tagas "{{{ | |
" pode ser encontrado em: | |
" http://vim.sourceforge.net/scripts/script.php?script_id=13 | |
"let g:closetag_html_style=1 | |
"autocmd FileType html,xml,xsl source ~/.vim/plugin/closetag.vim | |
" descomente a linha acima caso tenha o arquivo indicado"}}} | |
"coloca a data tipo Ter 26/Out/2004 hs 10:53 na linha atual "{{{ | |
"iab ,d <C-R>=strftime("%A %d/%B/%Y hs %H:%M")<CR> | |
iab ,m <voyeg3r em gmail.com> | |
"iab ,x <?xml version="1.0" encoding="utf-8" ?>"}}} | |
" Mapeamento para apagar com Backspace "{{{ | |
map <BS> X | |
set backspace=indent,eol,start | |
""}}} | |
" a função (strftime) é predefinida pelo sistema "{{{ | |
iab ydate <C-R>=strftime("%a %d/%b/%Y hs %H:%M")<CR> | |
iab hdate <C-R>=strftime("%a %d/%b/%Y hs %H:%M")<CR> | |
" Example: 1998-11-05 19:20:43 MST"}}} | |
" vim:foldmethod=marker:tw=78:ts=3:enc=utf8: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment