-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
43 lines (40 loc) · 977 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
set incsearch
filetype plugin indent on
set shiftwidth=4
set tabstop=4
set smarttab
set autoindent
set smartindent
set hidden
set noswapfile
set smartcase
set wildignorecase
set ignorecase
autocmd BufNewFile,BufRead *.blade.php set filetype=html
set iskeyword-=_
set ttimeoutlen=10
autocmd FileType * setlocal formatoptions-=c formatoptions-=o formatoptions-=r
let g:loaded_matchparen=1
" let g:netrw_altfile = 1
se nostartofline
" gvim settings
if has('gui_running')
au VimEnter * colorscheme monokai
endif
set vb t_vb=
set guifont=Monospace\ 13
set guicursor+=a:blinkon0
set guioptions+=a
call plug#begin('~/.vim/plugged')
Plug 'editorconfig/editorconfig-vim'
Plug 'adelarsq/vim-matchit'
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
Plug 'jwalton512/vim-blade'
Plug 'jiangmiao/auto-pairs'
Plug 'tpope/vim-commentary'
Plug 'wsdjeg/vim-fetch'
" Plug 'PeterRincker/vim-searchlight'
" Plug 'romainl/vim-cool'
call plug#end()
highlight Comment cterm=italic gui=italic