-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
62 lines (55 loc) · 1.16 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
59
60
61
62
set nocompatible
syntax enable
filetype plugin indent on
call plug#begin('~/.vim/plugged')
" Syntax/highlighting
"Plug 'chase/vim-ansible-yaml'
"Plug 'digitaltoad/vim-jade'
"Plug 'groenewege/vim-less'
"Plug 'hail2u/vim-css3-syntax'
"Plug 'kchmck/vim-coffee-script'
"Plug 'leafgarland/typescript-vim'
"Plug 'martinda/Jenkinsfile-vim-syntax'
"Plug 'othree/html5.vim'
"Plug 'rodjek/vim-puppet'
Plug 'scrooloose/syntastic'
Plug 'sheerun/vim-polyglot'
Plug 'tpope/vim-surround'
"Plug 'tpope/vim-git'
"Plug 'zah/nim.vim'
" Text manipulation
Plug 'godlygeek/tabular'
call plug#end()
"colorscheme base16-bright
highlight LineNr ctermfg=grey
let base16colorspace=256
set autoindent
set autoread
set background=dark
set backspace=indent,eol,start
set backspace=indent,eol,start
set display+=lastline
set encoding=utf-8
set expandtab
set incsearch
set laststatus=2
set modelines=5
"set mouse=a
set number
set omnifunc=syntaxcomplete#Complete
set path+=**
set ruler
set shiftwidth=2
set smarttab
set splitbelow
set splitright
set softtabstop=2
set tabpagemax=50
set tabstop=2
set wildmenu
command! MakeTags !ctags -R .
try
source ~/.vimrc.local
catch
" ignore missing local vimrc
endtry