Created
August 22, 2012 10:07
-
-
Save samuell/3424137 to your computer and use it in GitHub Desktop.
Some .vimrc settings
This file contains hidden or 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
set nocompatible | |
syntax on | |
set showmatch | |
set ignorecase | |
set showmode | |
set ts=4 | |
set sw=4 | |
set autoindent | |
set smartindent | |
set number | |
set expandtab | |
autocmd FileType python runtime! autoload/pythoncomplete.vim | |
imap <c-space> <c-x><c-o> | |
:set backspace=2 | |
if has("autocmd") | |
autocmd FileType python set complete+=k/home/samuel/.vim/pydiction-1.2/pydiction isk$ | |
endif " has("autocmd" | |
filetype plugin on | |
filetype indent on | |
" Mappings | |
nmap <C-N> :noh <CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment