1
0
mirror of https://github.com/elisspace/old_dots.git synced 2026-08-29 15:44:04 +00:00
Files
old_dots/dot_vimrc
2022-05-26 11:53:57 -04:00

25 lines
374 B
Plaintext

" highlight syntax
syntax on
" show line numbers
set number
" (also `set nu` works)
" disable the swapfile
set noswapfile
" highlight all results
set hlsearch
" ignore case in search
set ignorecase
" remap escape key for leaving insert mode
inoremap jk <ESC>
" change your leader key for shortcuts
let mapleader = "'"
" show search results as you type
set incsearch