aboutsummaryrefslogtreecommitdiff
path: root/init.vim
diff options
context:
space:
mode:
authorMax Christian Pohle2018-11-07 00:50:37 +0100
committerMax Christian Pohle2018-11-07 00:50:37 +0100
commit24004031c25e8d71cb0759bd503553fd115560b0 (patch)
treea16106461d04cda5ed303a2db75670f8ab702d94 /init.vim
parenta1ad32a2911fe6ca05830d8f2c58275f146c9675 (diff)
downloadvim-24004031c25e8d71cb0759bd503553fd115560b0.tar.bz2
vim-24004031c25e8d71cb0759bd503553fd115560b0.zip
Changed some signcolumn icons
Diffstat (limited to 'init.vim')
-rw-r--r--init.vim43
1 files changed, 36 insertions, 7 deletions
diff --git a/init.vim b/init.vim
index 8d22034..590f12b 100644
--- a/init.vim
+++ b/init.vim
@@ -1,4 +1,4 @@
1exec ':source '.fnamemodify($MYVIMRC,':h').'/'.'vimrc-common' 1exec ':source '.fnamemodify($MYVIMRC,':h').'/'.'vimrc-common'
2 2
3set packpath+=pack/neovim 3set packpath+=pack/neovim
4 4
@@ -13,6 +13,34 @@ augroup DEOPLETE
13 \ 'c': ['clangd'] 13 \ 'c': ['clangd']
14 \ } 14 \ }
15 15
16
17 let g:LanguageClient_diagnosticsDisplay = {
18 \ 1: {
19 \ "name": "Error",
20 \ "texthl": "ALEError",
21 \ "signText": "✖",
22 \ "signTexthl": "ALEErrorSign",
23 \ },
24 \ 2: {
25 \ "name": "Warning",
26 \ "texthl": "ALEWarning",
27 \ "signText": "⚠",
28 \ "signTexthl": "ALEWarningSign",
29 \ },
30 \ 3: {
31 \ "name": "Information",
32 \ "texthl": "ALEInfo",
33 \ "signText": '🛈',
34 \ "signTexthl": "ALEInfoSign",
35 \ },
36 \ 4: {
37 \ "name": "Hint",
38 \ "texthl": "ALEInfo",
39 \ "signText": "➤",
40 \ "signTexthl": "ALEInfoSign",
41 \ },
42 \ }
43
16 packadd deoplete.nvim 44 packadd deoplete.nvim
17 packadd LanguageClient-neovim 45 packadd LanguageClient-neovim
18 packadd echodoc.vim 46 packadd echodoc.vim
@@ -20,14 +48,15 @@ augroup END
20 48
21"======================================================================================================================= 49"=======================================================================================================================
22augroup ALE 50augroup ALE
23 let g:ale_set_highlights = 0 51 let g:ale_set_highlights = 0
24 52
25 let g:ale_sign_error = '' 53 let g:ale_sign_error = ''
26 let g:ale_sign_style_error = '' 54 let g:ale_sign_style_error = ''
27 let g:ale_sign_info = '' 55 let g:ale_sign_info = '🛈'
28 let g:ale_sign_warning = '' 56 let g:ale_sign_warning = ''
29 57
30 highlight! link ALEWarningSign FoldColumn 58 highlight link ALEErrorSign LineNr
59 highlight link ALEWarningSign LineNr
31 60
32 packadd ale 61 packadd ale
33augroup END 62augroup END
..