27:b124c75961d1
Anton Shestakov <engored@ya.ru>, Thu, 27 Feb 2014 20:01:56 +0900
bsdutil's cal.

next change 29:0fcd48b30d83
previous change 26:c755eb5f535a

.vimrc

Permissions: -rw-r--r--

Other formats: Feeds:
execute pathogen#infect()
set encoding=utf-8
set history=700
set undolevels=700
set mouse=a
set backspace=2
set scrolloff=4
set sidescrolloff=4
set clipboard=unnamed
set hidden
set nobackup
set nowritebackup
set noswapfile
set wildignore+=*.pyc
set wildmode=list:longest
set autoread
set pastetoggle=<F2>
set ssop-=options " do not store global and local values in a session
set ssop-=folds " do not store folds
set nowrap " don't automatically wrap on load
set tw=79 " width of document (used by gd)
set fo-=t " don't automatically wrap text when typing
set number " show line numbers
set tabstop=4
set softtabstop=4
set shiftwidth=4
set shiftround
set expandtab
set hlsearch
set incsearch
set ignorecase
set smartcase
let mapleader=","
map <Leader>n :bp <CR>
map <Leader>m :bn <CR>
" smart home
noremap <expr> <silent> <Home> col('.') == match(getline('.'),'\S')+1 ? '0' : '^'
imap <silent> <Home> <C-O><Home>
" better indentation
vnoremap < <gv
vnoremap > >gv
" bubble lines
nmap <C-Up> ddkP
nmap <C-Down> ddp
syntax on
filetype plugin indent on
" powerline
set laststatus=2
set ttimeoutlen=0 " eliminate delay after <ESC>
" ctrlp
let g:ctrlp_max_height=30
" syntastic
let g:syntastic_check_on_open=1
let g:syntastic_auto_loc_list=1
let g:syntastic_enable_signs=1
let g:syntastic_enable_highlighting=1
let g:syntastic_python_checkers=[]
let g:syntastic_javascript_checkers=["jsl"]
" python-mode
let g:pymode_folding=0
let g:pymode_lint_checker="pyflakes"
set t_Co=256
color molokai
let g:molokai_original=1
set background=dark
set colorcolumn=80
highlight ColorColumn ctermbg=233