From 467aea94c3f6fed7b660132b1404ea2a0170e0af Mon Sep 17 00:00:00 2001 From: Nicole Tietz-Sokolskaya Date: Mon, 18 Mar 2019 16:53:33 -0400 Subject: [PATCH] Text wrap width a little wider --- bash/.bash_helpers.sh | 2 +- nvim/.config/nvim/init.vim | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/bash/.bash_helpers.sh b/bash/.bash_helpers.sh index 22640c9..635cca6 100644 --- a/bash/.bash_helpers.sh +++ b/bash/.bash_helpers.sh @@ -55,7 +55,7 @@ configure_completions() { vimwiki() { cd ~/Code/ntietz/vimwiki git pull - vim -c "VimwikiIndex" + nvim -c "VimwikiIndex" git add -A git commit -am "Auto-commit ($(date))" git push diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index 04bd958..63914d8 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim @@ -14,6 +14,9 @@ set mouse= set scrolloff=2 set sidescrolloff=0 +" Wrap to 100 characters +set textwidth=100 + " Display our current line number and the offset of other lines set nu set relativenumber