From e5facc3d034d7ed4d0343e67dcac238687d45628 Mon Sep 17 00:00:00 2001 From: Tran Hau Date: Mon, 22 Mar 2021 03:45:43 +0000 Subject: [PATCH] chore(config): disable cursor style in neovim Remember to use " for comments and ' for string in neovim --- config/nvim/init.vim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config/nvim/init.vim b/config/nvim/init.vim index 820133c..8b7842a 100644 --- a/config/nvim/init.vim +++ b/config/nvim/init.vim @@ -10,11 +10,14 @@ set whichwrap=<,>,[,] " True color " https://gist.github.com/XVilka/8346728 if (empty($TMUX)) - if (has("termguicolors")) + if (has('termguicolors')) set termguicolors endif endif +" Disable cursor styling +set guicursor= + " Install xclip or xsel set clipboard+=unnamedplus