Skip to content

Instantly share code, notes, and snippets.

@gnovaro
Created January 17, 2022 00:55
Show Gist options
  • Save gnovaro/74fd3936e9c922f5380e7f6c2da01a51 to your computer and use it in GitHub Desktop.
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
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"
" ██╗ ██╗██╗███╗ ███╗██████╗ ██████╗
" ██║ ██║██║████╗ ████║██╔══██╗██╔════╝
" ██║ ██║██║██╔████╔██║██████╔╝██║
" ╚██╗ ██╔╝██║██║╚██╔╝██║██╔══██╗██║
" ╚████╔╝ ██║██║ ╚═╝ ██║██║ ██║╚██████╗
" ╚═══╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝
"
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 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