diff options
author | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-11-02 13:35:00 +0100 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-11-02 13:35:00 +0100 |
commit | 87bc403d0a7f36e003c71fc6cf6a84df385b15d3 (patch) | |
tree | d2d7e8b69029c60c18161e08cff8e4caff0d0ed0 /nvim | |
parent | 1f53c944155edf066335bbeca5a663c8e9c52fa3 (diff) |
[NeoVim] Default formatoptions for word wrap
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/nvim/init.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/nvim/init.vim b/nvim/nvim/init.vim index 2f4abd2..3cee3d7 100644 --- a/nvim/nvim/init.vim +++ b/nvim/nvim/init.vim @@ -90,7 +90,7 @@ set smartcase " Textwidth for automatic wrap, `gq` is formatting operation set textwidth=79 -set formatoptions=tcqj +set formatoptions=jcroql " Highlight where the lines are more than 80 characters wide set colorcolumn=80 |