From 3e1eee8268d14ebe867bd1ebdae814ac3789a12d Mon Sep 17 00:00:00 2001
From: Timmy Keller <tjk@tjkeller.xyz>
Date: Sat, 25 Nov 2023 22:10:13 -0600
Subject: set wrapping off

---
 nvim/init.vim | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'nvim/init.vim')

diff --git a/nvim/init.vim b/nvim/init.vim
index 699fcb4..9e89eb6 100755
--- a/nvim/init.vim
+++ b/nvim/init.vim
@@ -42,6 +42,7 @@ set smartcase                  " ...Unless the search term is capital
 set splitbelow splitright	   " Open splits on bottom/right instead of top/left
 set termguicolors              " Enable GUI colors for the terminal to get truecolor
 set wildmode=longest,list,full " Enable file auto-complete
+set wrap!                      " Disable word wrapping
 syntax on                      " Enable syntax highlighting
 
 " Get rid of the pointless .viminfo files that clutter the home directory
@@ -52,7 +53,7 @@ set viminfo=""
 autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
 
 " Tabbing
-let tabwidth = 4
+"let tabwidth = 4
 set tabstop=4                  " Set width of tabs to 4 instead of default 8
 set shiftwidth=4               " Tab key will only insert 1 tab
 " Use tabs instead of spaces
-- 
cgit v1.2.3