diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-03-17 13:00:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-17 13:00:19 +0100 |
commit | 0c1f7831649e92b6904ca580ee90acd6ba89d1a8 (patch) | |
tree | 0d3980fa4a77c305083dfc3a4ee24249e328408e /src/nvim/testdir/setup.vim | |
parent | 10045cddb6710ea92337d30fb15deded1fe6b432 (diff) | |
parent | 1dbe7a4decdd7e93153c0c3cb81197531b719b81 (diff) | |
download | rneovim-0c1f7831649e92b6904ca580ee90acd6ba89d1a8.tar.gz rneovim-0c1f7831649e92b6904ca580ee90acd6ba89d1a8.tar.bz2 rneovim-0c1f7831649e92b6904ca580ee90acd6ba89d1a8.zip |
Merge #6087 from justinmk/defaults
defaults: 'ruler', 'showcmd', 'belloff=all'
Diffstat (limited to 'src/nvim/testdir/setup.vim')
-rw-r--r-- | src/nvim/testdir/setup.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/testdir/setup.vim b/src/nvim/testdir/setup.vim index 52876d1e6c..05257d566d 100644 --- a/src/nvim/testdir/setup.vim +++ b/src/nvim/testdir/setup.vim @@ -1,5 +1,9 @@ " Common preparations for running tests. +set noruler +set noshowcmd +set belloff= + " Make sure 'runtimepath' does not include $HOME. set rtp=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after |