Skip to content

Instantly share code, notes, and snippets.

@elishowk
Created July 19, 2013 09:57
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 elishowk/6038065 to your computer and use it in GitHub Desktop.
Save elishowk/6038065 to your computer and use it in GitHub Desktop.
let g:pymode_lint_checker = "pyflakes,pep8"
map tj :tabnext<CR> " go to next tab
map tk :tabprev<CR> " go to previous tab
map tn :tabnew<CR> " create a new tab
map td :tabclose<CR> " close current tab
cmap w!! %!sudo tee > /dev/null %
colorscheme solarized
syntax enable
set background=dark
let g:acp_enableAtStartup = 1
let g:neocomplcache_enable_at_startup = 0
set shiftwidth=2 " Use indents of 4 spaces
set tabstop=2 " An indentation every four columns
set softtabstop=2 " Let backspace delete indent
set noeol
syntax on
set number
set hlsearch
set showmatch
set incsearch
set ignorecase
set nowrap
set autoindent
set cursorline
set expandtab
set mouse=r
let g:pymode_lint_ignore = "E501"
autocmd FileType *
\ if &omnifunc != '' |
\ call SuperTabChain(&omnifunc, "<c-p>") |
\ call SuperTabSetDefaultCompletionType("<c-x><c-u>") |
\ endif
let g:spf13_no_autochdir = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment