summaryrefslogtreecommitdiff
path: root/system/vim/vimrc
blob: 4849a16d166872870fc93e95fe69e8f7d9b5efb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set nocompatible        " Use Vim defaults (much better!)
set bs=2                " Allow backspacing over everything in insert mode
set ai                  " Always set auto-indenting on
set history=50          " keep 50 lines of command history
set ruler               " Show the cursor position all the time

set mouse=		" Use Vim 7 default of no mouse movements by default

" Don't use Ex mode, use Q for formatting
map Q gq

" When doing tab completion, give the following files lower priority.
set suffixes+=.info,.aux,.log,.dvi,.bbl,.out,.o,.lo

set nomodeline
syntax on
color desert
autocmd BufRead APKBUILD set filetype=sh