Skip to content

Instantly share code, notes, and snippets.

@IanoNjuguna
Last active June 13, 2023 19:05
Show Gist options
  • Save IanoNjuguna/158a039a004e70aaa9ad08bf17ef4a6d to your computer and use it in GitHub Desktop.
Save IanoNjuguna/158a039a004e70aaa9ad08bf17ef4a6d to your computer and use it in GitHub Desktop.
Additional Configurations For My Dot Vimrc File
" Customise tabs length
set tabstop=4 shiftwidth=4
" Indent automatically
set autoindent
" Intelligent indentation for C code
set smartindent
set cindent
" Enable syntax highlighting
syntax enable
" Display the current line and column
set number
" Display the current line and column
set number
" Column should not have more than 80chars
set colorcolumn=80
" Highlight the line at the cursor
set cursorline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment