Last active
September 30, 2020 21:28
-
-
Save XrXr/ff2d1986a4c35e1cfeab to your computer and use it in GitHub Desktop.
vimrc
This file contains 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
set nomodeline | |
set expandtab | |
set tabstop=8 | |
set softtabstop=4 | |
set shiftwidth=4 | |
set autoindent | |
set smartindent | |
set ignorecase | |
set smartcase | |
set ruler | |
syntax on | |
noremap ; l | |
noremap l k | |
noremap k j | |
noremap j h | |
inoremap jk <Esc> | |
nnoremap K <nop> | |
nnoremap q: <nop> | |
au FileType ruby set softtabstop=2 | set shiftwidth=2 | |
set nojoinspaces "put one space after period instead of two for `gq` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment