-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.vimrc
45 lines (38 loc) · 900 Bytes
/
.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
"Autogenerated .vimrc entries
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'elixir-lang/vim-elixir'
Plugin 'PProvost/vim-ps1'
Plugin 'mattreduce/vim-mix'
Plugin 'kien/ctrlp.vim'
Plugin 'itchyny/lightline.vim'
Plugin 'altercation/vim-colors-solarized'
call vundle#end()
map <F5> :!clear & mix test<CR>
map <F6> :!clear & elixir %<CR>
inoremap jj <ESC>
filetype plugin indent on
syntax on
set statusline+=%#warningmsg#
set statusline+=%*
set expandtab
set shiftwidth=2
set softtabstop=2
set autowrite
set incsearch
set nocompatible
set number
set ttyfast
set hlsearch
set laststatus=2
set noshowmode
set t_Co=256
syntax enable
set background=dark
let g:solarized_termcolors=256
let g:solarized_termtrans=1
colorscheme solarized
let g:lightline = { 'colorscheme': 'solarized'}
filetype plugin on
set omnifunc=syntaxcomplete#Complete