diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-04-08 16:55:00 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-04-08 16:55:00 +0530 |
commit | 38a0e8f082b72b8ed101cff2140d443e8f434d44 (patch) | |
tree | a8bbdffd74cb67dde8bb89501c3813fe4cd44b73 | |
parent | 35f5427ea092cfbdba29c67f92fb9ed0538f7e4a (diff) |
disabled word wrap by default in nvim
-rw-r--r-- | .config/nvim/init.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 9b2bb27..9324fa5 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -47,6 +47,7 @@ let g:coc_global_extentions = [ \ 'coc-tsserver', \ 'coc-css', \ 'coc-html', + \ 'coc-cpp', \ ] " line numbers @@ -82,4 +83,7 @@ let g:vim_jsx_pretty_colorful_config = 1 " colors and theming (copied from DT's config) -highlight LineNr ctermfg=1 ctermbg=none cterm=none +"highlight LineNr ctermfg=1 ctermbg=none cterm=none + +" disable word wrapping +set nowrap |