Last active
November 23, 2021 18:57
-
-
Save Spirit-act/d5a559638289feeb0cca90fba4316d2b to your computer and use it in GitHub Desktop.
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
scriptencoding utf-8 | |
set encoding=utf-8 | |
set number | |
set relativenumber | |
set autoindent | |
set smartindent | |
set tabstop=4 | |
set shiftwidth=4 | |
set smarttab | |
set expandtab | |
colorscheme industry | |
set cursorline | |
set scrolloff=5 | |
set sidescrolloff=5 | |
syntax on | |
set listchars=eol:$ | |
au! BufNewFile,BufReadPost *.{yaml,yml} set filetype=yaml | |
autocmd FileType yaml setlocal shiftwidth=2 softtabstop=2 expandtab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment