Last active
July 8, 2021 17:47
-
-
Save k3karthic/98d9b73090b4cdb44e6a9ae84318219f to your computer and use it in GitHub Desktop.
Rudimentary Vim Config
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
syntax on | |
set number | |
set autoindent | |
set tabstop=4 | |
set shiftwidth=4 | |
" YAML - 2 space indent, no tabs | |
autocmd FileType yaml setlocal tabstop=2 shiftwidth=2 expandtab | |
" Python - 4 space indent, no tabs | |
autocmd FileType python setlocal tabstop=4 shiftwidth=4 expandtab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment