Created
January 17, 2022 00:55
-
-
Save gnovaro/74fd3936e9c922f5380e7f6c2da01a51 to your computer and use it in GitHub Desktop.
My default VIM configuration file .vimrc add in your home dir /home/username
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
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" | |
" ██╗ ██╗██╗███╗ ███╗██████╗ ██████╗ | |
" ██║ ██║██║████╗ ████║██╔══██╗██╔════╝ | |
" ██║ ██║██║██╔████╔██║██████╔╝██║ | |
" ╚██╗ ██╔╝██║██║╚██╔╝██║██╔══██╗██║ | |
" ╚████╔╝ ██║██║ ╚═╝ ██║██║ ██║╚██████╗ | |
" ╚═══╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ | |
" | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Turn syntax highlighting on. | |
syntax on | |
" Add numbers to each line on the left-hand side. | |
set number | |
" Set tab width to 4 columns. | |
set tabstop=4 | |
" Use space characters instead of tabs. | |
set expandtab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment