-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_vimrc
57 lines (43 loc) · 920 Bytes
/
dot_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
set nocompatible
syntax on
set modelines=0
set encoding=utf-8
set number
set belloff=all
set mouse=a
set splitbelow
set splitright
set wrap
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set noshiftround
set scrolloff=3
set backspace=indent,eol,start
set matchpairs+=<:>
set completeopt+=menuone,noselect
set shortmess+=c
set hidden
set cursorline
set t_Co=256
set termguicolors
filetype plugin on
set omnifunc=syntaxcomplete#Complete
call plug#begin('~/.vim/plugged')
" Features
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-endwise'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-surround'
Plug 'lifepillar/vim-mucomplete'
Plug '~/.fzf'
Plug 'vim-airline/vim-airline'
" Syntax highlighting
Plug 'sheerun/vim-polyglot'
Plug 'isobit/vim-caddyfile'
" Color scheme
Plug 'lunacookies/vim-colors-xcode'
call plug#end()
let g:mucomplete#enable_auto_at_startup = 1
colorscheme xcode