Last active
February 5, 2021 21:48
-
-
Save jimblom/ccdce4d3198bfb39b1b3057ba1dbb925 to your computer and use it in GitHub Desktop.
Jim's vim configuration file
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
" Jim's vimrc | |
" | |
" Enable Syntax Highlighting | |
syntax on | |
" When opening a new line, and no filetype-specific indenting is enabled, keep | |
" the same indent as the line you're currently on. Useful for README's, etc. | |
set autoindent | |
" Indentation settings for using 4 spaces instead of tabs. | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab | |
" Remap CTRL+V TAB to SHIFT+TAB - to create a real tab | |
inoremap <S-Tab> <C-V><Tab> | |
" Use case-insensitive search, unless using capital letters | |
set ignorecase | |
set smartcase | |
" Display the cursor position on the last sline of the screen, or in the | |
" status line of a window | |
set ruler | |
" Enable the use of a mouse for all modes | |
set mouse=a | |
" Set the command window height to 2 lines, to avoid many cases of having to | |
" press <Enter> to continue | |
set cmdheight=2 | |
" Display line numbers on the left | |
set number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment