summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimmy Keller <tjk@tjkeller.xyz>2021-09-04 16:23:22 -0500
committerTimmy Keller <tjk@tjkeller.xyz>2021-09-04 16:23:22 -0500
commitc315fd3cc305cbe81c2f1fd749e9243f17f6f2c6 (patch)
treee86fde0c0f4ed98b0095cde74f4e5cc562d65e54
parent0ca5965a24eb2c32987f819c6d16f6bf05f98c31 (diff)
downloaddotconfig-c315fd3cc305cbe81c2f1fd749e9243f17f6f2c6.tar.xz
dotconfig-c315fd3cc305cbe81c2f1fd749e9243f17f6f2c6.zip
no need for cursor shape modifiers
-rwxr-xr-xnvim/init.vim10
1 files changed, 5 insertions, 5 deletions
diff --git a/nvim/init.vim b/nvim/init.vim
index 8218448..f4c9ab5 100755
--- a/nvim/init.vim
+++ b/nvim/init.vim
@@ -83,11 +83,11 @@ else
let &titleold="st"
endif
-" Set the cursor on a per-mode basis
-let &t_SI.="\<Esc>[6 q" " Insert mode
-let &t_SR.="\<Esc>[4 q" " Replace mode
-let &t_EI.="\<Esc>[2 q" " Normal mode
-let &t_ti.="\<Esc>[2 q" " Cursor on startup
+" Set the cursor on a per-mode basis (Not needed in NVIM)
+"let &t_SI.="\<Esc>[6 q" " Insert mode
+"let &t_SR.="\<Esc>[4 q" " Replace mode
+"let &t_EI.="\<Esc>[2 q" " Normal mode
+"let &t_ti.="\<Esc>[2 q" " Cursor on startup
" Automatically deletes all trailing whitespace on save
function DelWS()