nvim: Add vim-markify
Now that we have dropped Neomake add a simple plugin to add the functionality of quickfix signs. Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
parent
bc6a097739
commit
333576e90d
2 changed files with 7 additions and 0 deletions
|
@ -66,6 +66,8 @@ Plug 'wsdjeg/vim-fetch'
|
||||||
Plug 'liuchengxu/vim-which-key'
|
Plug 'liuchengxu/vim-which-key'
|
||||||
" Clipboard
|
" Clipboard
|
||||||
Plug 'christoomey/vim-system-copy'
|
Plug 'christoomey/vim-system-copy'
|
||||||
|
" Signs for entries in location list or quickfix lists
|
||||||
|
Plug 'dhruvasagar/vim-markify'
|
||||||
" Language support & syntax highlighting
|
" Language support & syntax highlighting
|
||||||
" Haskell
|
" Haskell
|
||||||
Plug 'neovimhaskell/haskell-vim'
|
Plug 'neovimhaskell/haskell-vim'
|
||||||
|
|
|
@ -67,6 +67,11 @@ let g:cpp_posix_standard = 1
|
||||||
let g:cpp_experimental_template_highlight = 1
|
let g:cpp_experimental_template_highlight = 1
|
||||||
let g:cpp_concepts_highlight = 1
|
let g:cpp_concepts_highlight = 1
|
||||||
|
|
||||||
|
" Markify
|
||||||
|
let g:markify_error_text = 'E'
|
||||||
|
let g:markify_warning_text = 'W'
|
||||||
|
let g:markify_info_text = 'I'
|
||||||
|
|
||||||
" Deoplete
|
" Deoplete
|
||||||
let g:deoplete#enable_at_startup = 0
|
let g:deoplete#enable_at_startup = 0
|
||||||
let g:deoplete#sources#rust#disable_keymap = 1
|
let g:deoplete#sources#rust#disable_keymap = 1
|
||||||
|
|
Loading…
Reference in a new issue