Created
December 18, 2012 21:09
-
-
Save isidromerayo/4332032 to your computer and use it in GitHub Desktop.
.vimrc en nikki 2012-12-18
This file contains hidden or 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
" no vi-compatible | |
set nocompatible | |
" Setting up Vundle - the vim plugin bundler | |
let iCanHazVundle=1 | |
let vundle_readme=expand('~/.vim/bundle/vundle/README.md') | |
if !filereadable(vundle_readme) | |
echo "Installing Vundle..." | |
echo "" | |
silent !mkdir -p ~/.vim/bundle | |
silent !git clone https://github.com/gmarik/vundle ~/.vim/bundle/vundle | |
let iCanHazVundle=0 | |
endif | |
" required for vundle | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" let Vundle manage Vundle | |
" required! | |
Bundle 'gmarik/vundle' | |
" Bundles from GitHub repos: | |
" Python and PHP Debugger | |
Bundle 'fisadev/vim-debug.vim' | |
" Better file browser | |
Bundle 'scrooloose/nerdtree' | |
" Code commenter | |
Bundle 'scrooloose/nerdcommenter' | |
" Search and read python documentation | |
Bundle 'fs111/pydoc.vim' | |
" Class/module browser | |
Bundle 'majutsushi/tagbar' | |
" Code and files fuzzy finder | |
Bundle 'kien/ctrlp.vim' | |
" PEP8 and python-flakes checker | |
Bundle 'nvie/vim-flake8' | |
" Zen coding | |
Bundle 'mattn/zencoding-vim' | |
" Git integration | |
Bundle 'motemen/git-vim' | |
" Tab list panel | |
Bundle 'kien/tabman.vim' | |
" Powerline | |
Bundle 'Lokaltog/vim-powerline' | |
" Terminal Vim with 256 colors colorscheme | |
Bundle 'fisadev/fisa-vim-colorscheme' | |
" Consoles as buffers | |
Bundle 'rosenfeld/conque-term' | |
" Pending tasks list | |
Bundle 'fisadev/FixedTaskList.vim' | |
" Surround | |
Bundle 'tpope/vim-surround' | |
" Autoclose | |
Bundle 'Townk/vim-autoclose' | |
" Better python indentation | |
Bundle 'vim-scripts/indentpython.vim--nianyang' | |
" Indent text object | |
Bundle 'michaeljsmith/vim-indent-object' | |
" | |
" Javascript | |
Bundle 'leshill/vim-json' | |
Bundle 'groenewege/vim-less' | |
Bundle 'pangloss/vim-javascript' | |
Bundle 'taxilian/vim-web-indent' | |
Bundle 'itspriddle/vim-jquery' | |
" HTML | |
Bundle 'amirh/HTML-AutoCloseTag' | |
Bundle 'ChrisYip/Better-CSS-Syntax-for-Vim' | |
" Bundles from vim-scripts repos | |
" Autocompletition | |
Bundle 'AutoComplPop' | |
" Python code checker | |
Bundle 'pyflakes.vim' | |
" Search results counter | |
Bundle 'IndexedSearch' | |
" XML/HTML tags navigation | |
Bundle 'matchit.zip' | |
" Gvim colorscheme | |
Bundle 'Wombat' | |
" Autocompletition inside search | |
Bundle 'SearchComplete' | |
" Yank history navigation | |
Bundle 'YankRing.vim' | |
" Installing plugins the first time | |
if iCanHazVundle == 0 | |
echo "Installing Bundles, please ignore key map error messages" | |
echo "" | |
:BundleInstall | |
endif | |
" allow plugins by file type | |
filetype plugin on | |
filetype indent on | |
" tabs and spaces handling | |
set expandtab | |
set tabstop=4 | |
set softtabstop=4 | |
set shiftwidth=4 | |
" tablength exceptions | |
autocmd FileType html setlocal shiftwidth=2 tabstop=2 | |
autocmd FileType htmldjango setlocal shiftwidth=2 tabstop=2 | |
autocmd FileType javascript setlocal shiftwidth=2 tabstop=2 | |
" always show status bar | |
set ls=2 | |
" incremental search | |
set incsearch | |
" highlighted search results | |
set hlsearch | |
" line numbers | |
set nu | |
" mark column 80 | |
" | |
hi ColorColumn ctermbg=lightgrey guibg=lightgrey | |
set colorcolumn=80 | |
au BufWinEnter * let w:m2=matchadd('ErrorMsg', '\%>80v.\+',-1) | |
" toggle Tagbar display | |
map <F4> :TagbarToggle<CR> | |
" autofocus on Tagbar open | |
let g:tagbar_autofocus = 1 | |
" NERDTree (better file browser) toggle | |
map <F3> :NERDTreeToggle<CR> | |
" tab navigation | |
map tn :tabn<CR> | |
map tp :tabp<CR> | |
map tm :tabm<CR> | |
map tt :tabnew | |
map <C-S-Right> :tabn<CR> | |
imap <C-S-Right> <ESC>:tabn<CR> | |
map <C-S-Left> :tabp<CR> | |
imap <C-S-Left> <ESC>:tabp<CR> | |
" navigate windows with meta+arrows | |
map <M-Right> <c-w>l | |
map <M-Left> <c-w>h | |
map <M-Up> <c-w>k | |
map <M-Down> <c-w>j | |
imap <M-Right> <ESC><c-w>l | |
imap <M-Left> <ESC><c-w>h | |
imap <M-Up> <ESC><c-w>k | |
imap <M-Down> <ESC><c-w>j | |
" automatically close autocompletition window | |
autocmd CursorMovedI * if pumvisible() == 0|pclose|endif | |
autocmd InsertLeave * if pumvisible() == 0|pclose|endif | |
" old autocomplete keyboard shortcut | |
imap <C-J> <C-X><C-O> | |
" show pending tasks list | |
map <F2> :TaskList<CR> | |
" removes trailing spaces of python files | |
" (and restores cursor position) | |
autocmd BufWritePre *.py mark z | %s/ *$//e | 'z | |
" save as sudo | |
ca w!! w !sudo tee "%" | |
" colors and settings of autocompletition | |
highlight Pmenu ctermbg=4 guibg=LightGray | |
" highlight PmenuSel ctermbg=8 guibg=DarkBlue guifg=Red | |
" highlight PmenuSbar ctermbg=7 guibg=DarkGray | |
" highlight PmenuThumb guibg=Black | |
" use global scope search | |
let OmniCpp_GlobalScopeSearch = 1 | |
" 0 = namespaces disabled | |
" 1 = search namespaces in the current buffer | |
" 2 = search namespaces in the current buffer and in included files | |
let OmniCpp_NamespaceSearch = 2 | |
" 0 = auto | |
" 1 = always show all members | |
let OmniCpp_DisplayMode = 1 | |
" 0 = don't show scope in abbreviation | |
" 1 = show scope in abbreviation and remove the last column | |
let OmniCpp_ShowScopeInAbbr = 0 | |
" This option allows to display the prototype of a function in the abbreviation part of the popup menu. | |
" 0 = don't display prototype in abbreviation | |
" 1 = display prototype in abbreviation | |
let OmniCpp_ShowPrototypeInAbbr = 1 | |
" This option allows to show/hide the access information ('+', '#', '-') in the popup menu. | |
" 0 = hide access | |
" 1 = show access | |
let OmniCpp_ShowAccess = 1 | |
" This option can be use if you don't want to parse using namespace declarations in included files and want to add | |
" namespaces that are always used in your project. | |
let OmniCpp_DefaultNamespaces = ["std"] | |
" Complete Behaviour | |
let OmniCpp_MayCompleteDot = 0 | |
let OmniCpp_MayCompleteArrow = 0 | |
let OmniCpp_MayCompleteScope = 0 | |
" When 'completeopt' does not contain "longest", Vim automatically select the first entry of the popup menu. You can | |
" change this behaviour with the OmniCpp_SelectFirstItem option. | |
let OmniCpp_SelectFirstItem = 0 | |
" debugger keyboard shortcuts | |
map <F5> :Dbg over<CR> | |
map <F6> :Dbg into<CR> | |
map <F7> :Dbg out<CR> | |
map <F8> :Dbg here<CR> | |
map <F9> :Dbg break<CR> | |
map <F10> :Dbg watch<CR> | |
map <F11> :Dbg down<CR> | |
map <F12> :Dbg up<CR> | |
" CtrlP (new fuzzy finder) | |
let g:ctrlp_map = ',e' | |
nmap ,g :CtrlPBufTag<CR> | |
nmap ,G :CtrlPBufTagAll<CR> | |
nmap ,f :CtrlPLine<CR> | |
nmap ,m :CtrlPMRUFiles<CR> | |
" to be able to call CtrlP with default search text | |
function! CtrlPWithSearchText(search_text, ctrlp_command_end) | |
execute ':CtrlP' . a:ctrlp_command_end | |
call feedkeys(a:search_text) | |
endfunction | |
" CtrlP with default text | |
nmap ,wg :call CtrlPWithSearchText(expand('<cword>'), 'BufTag')<CR> | |
nmap ,wG :call CtrlPWithSearchText(expand('<cword>'), 'BufTagAll')<CR> | |
nmap ,wf :call CtrlPWithSearchText(expand('<cword>'), 'Line')<CR> | |
nmap ,d ,wg | |
nmap ,D ,wG | |
nmap ,we :call CtrlPWithSearchText(expand('<cword>'), '')<CR> | |
nmap ,pe :call CtrlPWithSearchText(expand('<cfile>'), '')<CR> | |
nmap ,wm :call CtrlPWithSearchText(expand('<cword>'), 'MRUFiles')<CR> | |
" Don't change working directory | |
let g:ctrlp_working_path_mode = 0 | |
" Ignore files on fuzzy finder | |
let g:ctrlp_custom_ignore = { | |
\ 'dir': '\v[\/](\.git|\.hg|\.svn)$', | |
\ 'file': '\.pyc$\|\.pyo$', | |
\ } | |
" simple recursive grep | |
command! -nargs=1 RecurGrep lvimgrep /<args>/gj ./**/*.* | lopen | set nowrap | |
command! -nargs=1 RecurGrepFast silent exec 'lgrep! <q-args> ./**/*.*' | lopen | |
nmap ,R :RecurGrep | |
nmap ,r :RecurGrepFast | |
nmap ,wR :RecurGrep <cword><CR> | |
nmap ,wr :RecurGrepFast <cword><CR> | |
" run pep8+pyflakes validator | |
autocmd FileType python map <buffer> ,8 :call Flake8()<CR> | |
" rules to ignore (example: "E501,W293") | |
let g:flake8_ignore="" | |
" don't let pyflakes allways override the quickfix list | |
let g:pyflakes_use_quickfix = 0 | |
" tabman shortcuts | |
let g:tabman_toggle = 'tl' | |
let g:tabman_focus = 'tf' | |
" use 256 colors when possible | |
if &term =~? 'mlterm\|xterm\|screen-256' | |
let &t_Co = 256 | |
" color | |
colorscheme fisa | |
else | |
" color | |
colorscheme delek | |
endif | |
" colors for gvim | |
if has('gui_running') | |
colorscheme wombat | |
endif | |
" when scrolling, keep cursor 3 lines away from screen border | |
set scrolloff=3 | |
" autocompletition of files and commands behaves like shell | |
" (complete only the common part, list the options that match) | |
set wildmode=list:longest | |
" Fix to let ESC work as espected with Autoclose plugin | |
let g:AutoClosePumvisible = {"ENTER": "\<C-Y>", "ESC": "\<ESC>"} | |
" to use fancy symbols for powerline, uncomment the following line and use a | |
" patched font (more info on the README.rst) | |
" let g:Powerline_symbols = 'fancy' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment