|
diff --git a/.vimrc b/.vimrc
|
| ... |
| 15 |
set backspace=indent,eol,start completeopt=menuone path+=** |
15 |
set backspace=indent,eol,start completeopt=menuone path+=** |
| 16 |
set foldmethod=syntax foldlevel=99 foldopen= lazyredraw scrolloff=10 |
16 |
set foldmethod=syntax foldlevel=99 foldopen= lazyredraw scrolloff=10 |
| 17 |
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/vendor,tags,*.o,*.a,*.so |
17 |
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/vendor,tags,*.o,*.a,*.so |
| 18 |
set grepprg=rg\ --vimgrep\ --no-heading\ --smart-case |
|
|
| 19 |
set omnifunc=ale#completion#OmniFunc |
18 |
set omnifunc=ale#completion#OmniFunc |
| 20 |
set completeopt=menu,menuone,popup,noselect,noinsert |
19 |
set completeopt=menu,menuone,popup,noselect,noinsert |
| 21 |
colorscheme wildcharm |
20 |
colorscheme wildcharm |
| 22 |
|
21 |
|
| 23 |
if executable('rg') |
22 |
if executable('rg') |
| 24 |
set grepprg=rg\ --vimgrep\ --smart-case |
23 |
set grepprg=rg\ --vimgrep\ --no-heading\ --smart-case |
| 25 |
set grepformat=%f:%l:%c:%m |
24 |
set grepformat=%f:%l:%c:%m |
| 26 |
endif |
25 |
endif |
| 27 |
|
26 |
|
| 28 |
nnoremap <C-Right> :bnext<CR> |
27 |
nnoremap <C-Right> :bnext<CR> |
| ... |