diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-06-20 18:45:03 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-08-24 00:48:32 -0400 |
commit | 45121a267f6374624570b88127f58c237abb623a (patch) | |
tree | 628a84bde6c3a20b330bf1167fa5541ede1223a4 /src/nvim/options.lua | |
parent | 7280e8c365af585400ad9f5da56dcd2f9d043982 (diff) | |
download | rneovim-45121a267f6374624570b88127f58c237abb623a.tar.gz rneovim-45121a267f6374624570b88127f58c237abb623a.tar.bz2 rneovim-45121a267f6374624570b88127f58c237abb623a.zip |
defaults: set 'laststatus' to 2. #2876
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 6506c6a9b5..89d49028ae 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1360,10 +1360,10 @@ return { { full_name='laststatus', abbreviation='ls', type='number', scope={'global'}, - vi_def=true, + vim=true, redraw={'all_windows'}, varname='p_ls', - defaults={if_true={vi=1}} + defaults={if_true={vi=1,vim=2}} }, { full_name='lazyredraw', abbreviation='lz', |