The Computer Oracle

Enable Bottom-Right Numbers in VIM

-------------------------------------------------------------------------------
Become or hire the top 3% of the developers on Toptal https://topt.al/25cXVn
-------------------------------------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Horror Game Menu Looping

--

Chapters
00:00 Question
00:25 Accepted answer (Score 47)
00:37 Answer 2 (Score 21)
01:03 Answer 3 (Score 1)
01:21 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.