-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc
58 lines (46 loc) · 1.27 KB
/
vimrc
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
" Plugins to install
Plugin 'plasticboy/vim-markdown'
Plugin 'altercation/vim-colors-solarized'
Plugin 'scrooloose/syntastic'
Plugin 'bling/vim-airline'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" show line number
set number
" default terminal background
syntax enable
set background=dark
"let g:solarized_termcolors=256
let g:solarized_termtrans=1
colorscheme solarized
" Bash-style tab completion
set wildmode=longest,list
set wildmenu
" Enable OS mouse clicking and scrolling
"
" Note for Mac OS X: Requires SIMBL and MouseTerm
"
" http://www.culater.net/software/SIMBL/SIMBL.php
" https://bitheap.org/mouseterm/
" https://github.com/mcandre/dotfiles/blob/master/.vimrc"
if has("mouse")
set mouse=a
endif
" I'm prefer spaces to tabs
set tabstop=4
set shiftwidth=4
set expandtab
" Enable 256 colors
" set t_Co=256
" Airline configuration
set laststatus=2
let g:airline_powerline_fonts = 1
let g:airline_theme="dark"