Added gpg conf"
[dotfiles] / .vimrc
1 " Don't imitate vi.
2 set nocompatible
3
4 " Make tab-completion work more like bash.
5 set wildmenu
6 set wildmode=list:full
7
8 " Ignore certain file extensions when tab-completing.
9 set wildignore=*.swp,*.bak,*.pyc,*.class,*.o,*.exe
10
11 " Set filetype stuff to on.
12 filetype on
13 filetype plugin on
14
15 " Set up autoindentation.
16 set smartindent
17 filetype indent on
18
19 " Example filetype-specific setting:
20 " if has('autocmd')
21 "     autocmd filetype python set expandtab
22 " endif
23
24 " Allow folding.
25 set foldenable
26 set foldmethod=syntax
27 set foldlevelstart=99
28
29 " Show line numbers.
30 set number
31 set numberwidth=4
32
33 " Scroll five lines ahead of cursor.
34 set scrolloff=5
35
36 " Turn off error bells and visual bell
37 set noeb vb t_vb=
38
39 " Set tabs to width 4.
40 filetype plugin indent on
41 set shiftwidth=2
42 set softtabstop=2
43 set tabstop=2
44 set expandtab
45
46 " language-specific settings
47 autocmd FileType python setlocal shiftwidth=4 softtabstop=4 tabstop=4
48
49 " Allow backspacing over everything in insert mode.
50 set backspace=indent,eol,start
51
52 "Highlight bad spacing.
53 highlight BadSpacing term=standout ctermbg=cyan
54 augroup Spacing
55     autocmd!
56     " Highlight tabulators and trailing spaces
57     autocmd BufNewFile,BufReadPre * match BadSpacing /\(\t\|  *$\)/
58     " Only highlight trailing space in tab-filled formats
59     autocmd FileType help,make match BadSpacing /  *$/
60 augroup END
61
62 " Search as you type.
63 set incsearch
64
65 " Display command and location status.
66 set ruler
67 set showcmd
68
69 " Multiple windows are equally sized and open in reading order.
70 set equalalways
71 set splitbelow splitright
72
73 " Line wrapping off
74 set nowrap
75
76 " Enlarge history and undo/redo buffers.
77 set history=1000
78 set undolevels=1000
79
80 " Reset colors to a clean state.
81 if !has('gui_running')
82     set t_Co=8 t_md=
83 endif
84
85 " Enable syntax highlighting.
86 syntax enable
87
88 " Force vim to sync syntax highlighting from the beginning of the file.
89 syn sync fromstart
90
91 " Set the color scheme to desert.
92 colorscheme desert
93
94 " Unmap the arrow keys to prevent bad habits.
95 noremap  <Up> ""
96 noremap! <Up> <Esc>
97 noremap  <Down> ""
98 noremap! <Down> <Esc>
99 noremap  <Left> ""
100 noremap! <Left> <Esc>
101 noremap  <Right> ""
102 noremap! <Right> <Esc>
103
104 " Automatically reload the .vimrc when changes are made to it
105 au! BufWritePost .vimrc source %