cursormode: disable by default

fixes #1625
This commit is contained in:
Christian Brabandt
2018-01-05 08:12:35 +01:00
parent 3a2323feac
commit 6cdcaf13b1
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -332,7 +332,7 @@ function! airline#extensions#load()
call add(loaded_ext, 'vimtex')
endif
if (get(g:, 'airline#extensions#cursormode#enabled', 1))
if (get(g:, 'airline#extensions#cursormode#enabled', 0))
call airline#extensions#cursormode#init(s:ext)
call add(loaded_ext, 'cursormode')
endif