forked from jwalton512/vim-blade
-
Notifications
You must be signed in to change notification settings - Fork 2
/
vimrc
30 lines (22 loc) · 780 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
" this configuration is used for providing a sandbox
" environment for development
let &runtimepath.=','.escape(expand('<sfile>:p:h'), '\,')
set nocompatible
set backspace=indent,eol,start
set autoread
filetype plugin indent on
syntax on
set ai
set si
set sw=4 sts=4 ts=4
set et
set laststatus=2
set statusline=%f
set statusline+=%y
set nowrap
" hit F10 to identify the highlight group under the cursor
map <F10> :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<'
\ . synIDattr(synID(line("."),col("."),0),"name") . "> lo<"
\ . synIDattr(synIDtrans(synID(line("."),col("."),1)),"name") . ">"<CR>
let g:blade_custom_directives = ['datetime', 'namespaced::directive']
let g:blade_custom_directives_pairs = {'cache': 'endcache'}