From 488eab8838091ba1d8ac4c192af3ca3b00f4e3c2 Mon Sep 17 00:00:00 2001 From: Chris Sprague Date: Thu, 30 Jul 2015 18:36:01 -0400 Subject: [PATCH] turn on line numbers and column by default --- vimrcs/basic.vim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vimrcs/basic.vim b/vimrcs/basic.vim index f81f3e13..b70093b6 100644 --- a/vimrcs/basic.vim +++ b/vimrcs/basic.vim @@ -50,6 +50,9 @@ set history=500 filetype plugin on filetype indent on +" Enable line numbers +set number + " Set to auto read when a file is changed from the outside set autoread @@ -277,7 +280,7 @@ endtry set laststatus=2 " Format the status line -set statusline=\ %{HasPaste()}%F%m%r%h\ %w\ \ CWD:\ %r%{getcwd()}%h\ \ \ Line:\ %l +set statusline=\ %{HasPaste()}%F%m%r%h\ %w\ \ CWD:\ %r%{getcwd()}%h\ \ \ Line:\ %l:%c """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""