Skip to content

Instantly share code, notes, and snippets.

@klen
Created October 24, 2011 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klen/1308733 to your computer and use it in GitHub Desktop.
Save klen/1308733 to your computer and use it in GitHub Desktop.
filetype off
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
syntax enable
" Enable filetypes feature
filetype plugin indent on
" SETTINGS
set colorcolumn=80
set expandtab
set tabstop=8
set softtabstop=4
set shiftwidth=4
set autoindent
set foldmethod=indent
set foldlevel=99
set number
set ruler
set completeopt=menuone,longest,preview
set wildignore+=*.pyc
set list
" Plugin configs
let g:CommandTAcceptSelectionMap = '<C-t>'
let g:CommandTAcceptSelectionTabMap = '<CR>'
let mapleader = ","
" KEY MAPPINGS
" Minibuf keys
map <leader>f :tabnext<CR>
map <leader>b :tabprevious<CR>
" ack keys
nmap <leader>a <Esc>:Ack!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment