diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2020-10-29 01:50:44 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2020-10-29 01:50:44 +0300 |
commit | 2b077497d84747c91ac96318bbb17ac9efe3ba6d (patch) | |
tree | edddc6be686bdebc3efb5abd0d982d1ff8012e69 | |
parent | 0c3ad265c073179ca3482d5d443c1497bd138f7e (diff) | |
download | vimrice-2b077497d84747c91ac96318bbb17ac9efe3ba6d.tar.gz vimrice-2b077497d84747c91ac96318bbb17ac9efe3ba6d.zip |
set textwidth to 80 globally
-rw-r--r-- | dotfiles/.config/nvim/init.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dotfiles/.config/nvim/init.vim b/dotfiles/.config/nvim/init.vim index d30453c..08b01a4 100644 --- a/dotfiles/.config/nvim/init.vim +++ b/dotfiles/.config/nvim/init.vim @@ -43,6 +43,7 @@ call plug#end() set relativenumber set scrolloff=5 set colorcolumn=+1 + set textwidth=80 " Set screen title let &titlestring = "vim - " . expand("%:t") @@ -79,7 +80,7 @@ call plug#end() set statusline+=\[%{&fileformat}\] set statusline+=\ - " default indentation +" default indentation filetype plugin indent on set noexpandtab set copyindent |