Enable Bottom-Right Numbers in VIM
--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Track title: CC G Dvoks String Quartet No 12 Ame 2
--
Chapters
00:00 Enable Bottom-Right Numbers In Vim
00:19 Accepted Answer Score 48
00:31 Answer 2 Score 21
00:47 Answer 3 Score 1
00:59 Thank you
--
Full question
https://superuser.com/questions/222188/e...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#macos #vim
#avk47
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Track title: CC G Dvoks String Quartet No 12 Ame 2
--
Chapters
00:00 Enable Bottom-Right Numbers In Vim
00:19 Accepted Answer Score 48
00:31 Answer 2 Score 21
00:47 Answer 3 Score 1
00:59 Thank you
--
Full question
https://superuser.com/questions/222188/e...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#macos #vim
#avk47
ACCEPTED ANSWER
Score 48
Try the command ":set ruler
".
ANSWER 2
Score 21
As Heptite described, the command :set ruler
results in the line/column information I was looking for. If you want to make this behavior permanent, edit your ~/.vimrc
file to include the following line:
set ruler
ANSWER 3
Score 1
You want to configure your statusline in .vimrc, with %l and %c denoting lines and columns, respectively.