Created
March 9, 2014 17:16
-
-
Save aciceri/9451014 to your computer and use it in GitHub Desktop.
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
"filetype off | |
call pathogen#infect() | |
call pathogen#helptags() | |
filetype plugin indent on | |
syntax on | |
set smartindent | |
set shiftwidth=4 | |
set tabstop=4 | |
set expandtab | |
set smarttab | |
set encoding=utf-8 | |
colorscheme desert | |
set laststatus=2 | |
set statusline= | |
set statusline+=%-3.3n\ | |
set statusline+=%f\ | |
set statusline+=%h%m%r%w | |
set statusline+=\[%{strlen(&ft)?&ft:'none'}] | |
set statusline+=%= | |
set statusline+=0x%-8B | |
set statusline+=%-14(%l,%c%V%) | |
set statusline+=%<%P | |
set ruler | |
set showcmd | |
set incsearch | |
set ignorecase | |
set wildmenu | |
set showmode | |
set visualbell | |
set number | |
map l :w<CR>:! clisp %<CR> | |
map py :w<CR>:! python %<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment