-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
38 lines (29 loc) · 814 Bytes
/
vimrc
File metadata and controls
38 lines (29 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
filetype off
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
set nocompatible " Use Vim defaults instead of 100% vi compatibility
set expandtab
set textwidth=79
set tabstop=4
set softtabstop=4
set shiftwidth=4
set autoindent
:syntax on
set ruler
set hlsearch
set undolevels=500
set history=50
set viminfo='100,f1,<2000
set encoding=utf-8
set showcmd " Show (partial) command in status line.
set showmatch " Show matching brackets.
set ignorecase " Do case insensitive matching
set smartcase
filetype on
filetype plugin on
filetype plugin indent on
autocmd FileType python set ft=python.django " For SnipMate
autocmd FileType html set ft=htmldjango.html " For SnipMate
let g:SuperTabMappingForward = '<s-tab>'
let mapleader=","
hi SpellBad cterm=underline ctermfg=red