From 96b975c1f9a9b79bc9a4aea2ee662fdb7675bd4a Mon Sep 17 00:00:00 2001 From: Juan Shotyou Date: Sun, 1 Sep 2024 20:37:38 +0100 Subject: [PATCH] Enabled vim relative line numbers --- .vim/vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vim/vimrc b/.vim/vimrc index 4fc03f8..f37cdd0 100644 --- a/.vim/vimrc +++ b/.vim/vimrc @@ -28,9 +28,10 @@ set history=10000 " Set the commands to save in history default number is 20. set wildmenu " Enable auto completion menu after pressing TAB. set wildmode=list:longest " Make wildmenu behave like similar to Bash completion. set title " Show file title +set cc=100 " Enable visual limit at 100 chars for good code formatting practice set guifont=hack_nerd_font:h11 -" set cc=100 " Enable visual limit at 100 chars for good code formatting practice set bg=dark +set relativenumber let g:kite_supported_languages = ['python', 'javascript']