Last active
September 29, 2020 12:23
-
-
Save bazi/1bfea2f8339d35e7da4c6d40be74bd38 to your computer and use it in GitHub Desktop.
my vimrc
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
" settings for vim | |
" 2016-20xx, Azilet | |
" | |
" set tab width and replace it with spaces | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set nu | |
set ruler " not set on macos | |
set cursorline | |
" explicitly enable syntax highlighting | |
" this is added from mac as it is not enabled by default | |
syntax enable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment