Created
July 24, 2015 18:10
-
-
Save alixedi/616d550358de3eb7bd56 to your computer and use it in GitHub Desktop.
My .vimrc
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
" @alixedi - My .vimrc based on: | |
" Sample by Martin Brochhaus: github.com/mbrochh/ | |
" Automatic reloading of .vimrc | |
autocmd! bufwritepost .vimrc source % | |
" Better copy & paste | |
" When you want to paste large blocks of code into vim, press F2 before you | |
" paste. At the bottom you should see ``-- INSERT (paste) --``. | |
set pastetoggle=<F2> | |
set clipboard=unnamed | |
" Mouse and backspace | |
set mouse=a " on OSX press ALT and click | |
set bs=2 " make backspace behave like normal again | |
" Rebind <Leader> key | |
" I like to have it here becuase it is easier to reach than the default and | |
" it is next to ``m`` and ``n`` which I use for navigating between tabs. | |
let mapleader = "," | |
" Bind nohl | |
" Removes highlight of your last search | |
" ``<C>`` stands for ``CTRL`` and therefore ``<C-n>`` stands for ``CTRL+n`` | |
noremap <C-n> :nohl<CR> | |
vnoremap <C-n> :nohl<CR> | |
inoremap <C-n> :nohl<CR> | |
" bind Ctrl+<movement> keys to move around the windows, instead of using Ctrl+w + <movement> | |
" Every unnecessary keystroke that can be saved is good for your health :) | |
map <c-j> <c-w>j | |
map <c-k> <c-w>k | |
map <c-l> <c-w>l | |
map <c-h> <c-w>h | |
" easier moving between tabs | |
map <Leader>n <esc>:tabprevious<CR> | |
map <Leader>m <esc>:tabnext<CR> | |
" map sort function to a key | |
vnoremap <Leader>s :sort<CR> | |
" easier moving of code blocks | |
" Try to go into visual mode (v), thenselect several lines of code here and | |
" then press ``>`` several times. | |
vnoremap < <gv " better indentation | |
vnoremap > >gv " better indentation | |
" Show whitespace | |
" MUST be inserted BEFORE the colorscheme command | |
autocmd ColorScheme * highlight ExtraWhitespace ctermbg=red guibg=red | |
au InsertLeave * match ExtraWhitespace /\s\+$/ | |
" Enable syntax highlighting | |
" You need to reload this file for the change to apply | |
filetype off | |
filetype plugin indent on | |
syntax on | |
" Showing line numbers and length | |
set number " show line numbers | |
set tw=79 " width of document (used by gd) | |
set nowrap " don't automatically wrap on load | |
set fo-=t " don't automatically wrap text when typing | |
set colorcolumn=80 | |
highlight ColorColumn ctermbg=233 | |
" easier formatting of paragraphs | |
vmap Q gq | |
nmap Q gqap | |
" Useful settings | |
set history=700 | |
set undolevels=700 | |
" Real programmers don't use TABs but spaces | |
set tabstop=4 | |
set softtabstop=4 | |
set shiftwidth=4 | |
set shiftround | |
set expandtab | |
" Make search case insensitive | |
set hlsearch | |
set incsearch | |
set ignorecase | |
set smartcase | |
" Disable stupid backup and swap files - they trigger too many events | |
" for file system watchers | |
set nobackup | |
set nowritebackup | |
set noswapfile | |
" Vundle begin | |
set nocompatible | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'gmarik/Vundle.vim' | |
" Plugins. | |
Plugin 'kien/ctrlp.vim' | |
Plugin 'davidhalter/jedi-vim' | |
let g:jedi#usages_command = "<leader>z" | |
let g:jedi#popup_on_dot = 0 | |
let g:jedi#popup_select_first = 0 | |
map <Leader>b Oimport ipdb; ipdb.set_trace() # BREAKPOINT<C-c> | |
Plugin 'terryma/vim-multiple-cursors' | |
Plugin 'flazz/vim-colorschemes' | |
" Color scheme | |
set t_Co=256 | |
" cd ~/.vim/bundle/vim-colorschemes/color/* .vim/colors | |
colorscheme wombat256 | |
Plugin 'Lokaltog/vim-powerline' | |
set laststatus=2 | |
" Vundle end | |
call vundle#end() | |
filetype plugin indent on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment