Last active
February 7, 2024 10:20
-
-
Save adyavanapalli/18bf1ae8ae588963f7e2c1c377425005 to your computer and use it in GitHub Desktop.
Easy peasy .vimrc for all terminals good in the world.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ------------------------------- " | |
" | Tab and Space Configuration | " | |
" ------------------------------- " | |
set tabstop=2 "Tab is 2 spaces in length." | |
set shiftwidth=2 "Indentation is 2 spaces in length." | |
set expandtab "Inserts space chars instead of tab." | |
set softtabstop=2 "Spaces in place of tabs still behave like tabs." | |
" ------------------------------ " | |
" | Line Numbers Configuration | " | |
" ------------------------------ " | |
set number | |
" ----------------------- " | |
" | Syntax Highlighting | " | |
" ----------------------- " | |
syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment