Vim: use scrolloff=5

This commit is contained in:
Théophile Bastian 2020-05-09 19:35:30 +02:00
parent 50f54b1389
commit fe4babacb4
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ def configure_home(home):
tmux_conf.write("set -g status off\n")
with vim_conf_path.open("w") as vim_conf:
vim_conf.write(
"syntax on\nset bg=dark\nset number\nset ts=4\nset sw=4\nset et\n"
"syntax on\nset bg=dark\nset number\nset ts=4\nset sw=4\nset et\nset so=5\n"
)
return tmux_conf_path, vim_conf_path